0% found this document useful (0 votes)
15 views2 pages

NAT New Conf

The document outlines the configuration of a network device named R1, detailing various interfaces including Loopback, GigabitEthernet, and Serial interfaces with their respective IP addresses and settings. It also includes configurations for NAT, specifying which interfaces are inside and outside, along with static NAT mappings and access lists for VLANs. Additionally, it sets up NAT pools and overload configurations for traffic management.

Uploaded by

guilherme.manoel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
15 views2 pages

NAT New Conf

The document outlines the configuration of a network device named R1, detailing various interfaces including Loopback, GigabitEthernet, and Serial interfaces with their respective IP addresses and settings. It also includes configurations for NAT, specifying which interfaces are inside and outside, along with static NAT mappings and access lists for VLANs. Additionally, it sets up NAT pools and overload configurations for traffic management.

Uploaded by

guilherme.manoel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

hostname R1

interface Loopback0
ip address 200.200.200.10 255.255.255.255
!
interface Loopback1
ip address 200.200.200.11 255.255.255.255
!
interface Loopback2
ip address 200.200.200.20 255.255.255.255
!
interface Loopback3
ip address 200.200.200.21 255.255.255.255
!
interface GigabitEthernet0/0/0
ip address 192.168.0.1 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/0/1
no ip address
duplex auto
speed auto
!
interface GigabitEthernet0/0/1.2
encapsulation dot1Q 2
ip address 10.0.2.1 255.255.255.0
!
interface GigabitEthernet0/0/1.3
encapsulation dot1Q 3
ip address 10.0.3.1 255.255.255.0
!
interface GigabitEthernet0/0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/1/0
no ip address
clock rate 2000000
shutdown
!
interface Serial0/1/1
ip address 200.200.200.2 255.255.255.252
!
interface Vlan1
no ip address
shutdown
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial0/1/1
!
ip flow-export version 9
!

#####################
####### NAT #########
#####################

## Conf interfaces

interface Serial0/1/1
ip nat outside
!
interface GigabitEthernet0/0/0
ip nat inside
!
interface GigabitEthernet0/0/1.2
ip nat inside
!
interface GigabitEthernet0/0/1.3
ip nat inside
!

## Conf 01
ip nat inside source static 192.168.0.2 200.200.200.10
!

## Conf 02
ip nat inside source static tcp 192.168.0.2 80 200.200.200.11 8080
!

## Conf 03
ip access-list standard vlan3
permit 10.0.3.0 0.0.0.255
!
ip nat inside source list vlan3 interface Serial0/1/1 overload

## Conf 04
ip access-list standard vlan2
permit 10.0.2.0 0.0.0.255
!
ip nat pool NAT-POOL 200.200.200.20 200.200.200.21 netmask 255.255.255.0
!
ip nat inside source list vlan2 pool NAT-POOL

You might also like