Pages

Tuesday, June 25, 2013

Routes Lab 01 - HQ LAN address config

sooo.. before we proceed to make HQ LAN available over the WAN to other branch, make sure you have below config ready. There'll be a couple of changes from the original plan, I've decided to use Vlan interface rather than Loopback for Core01/02. After all config applied, make sure all point to point are ping-able.

Hq-rtra

interface Loopback0
 ip address 10.9.9.1 255.255.255.255
!
interface FastEthernet0/0
 ip address 10.1.1.1 255.255.255.0

interface Serial0/1
 ip address 70.0.0.1 255.255.255.0
 encapsulation frame-relay
 ip ospf network point-to-multipoint
 clock rate 2000000
 frame-relay map ip 70.0.0.2 102 broadcast
 frame-relay map ip 70.0.0.3 103 broadcast
 no frame-relay inverse-arp

router ospf 1
 log-adjacency-changes
 network 10.9.9.1 0.0.0.0 area 0

 network 70.0.0.1 0.0.0.0 area 0

Hq-rtrb

interface FastEthernet0/0
 ip address 10.1.2.1 255.255.255.0

Hq-core01

interface FastEthernet0/0
 ip address 10.1.1.2 255.255.255.0

interface FastEthernet1/0
 switchport mode trunk

interface FastEthernet1/15
 switchport access vlan 99
!
interface Vlan1
 ip address 10.1.11.1 255.255.255.0
!
interface Vlan2
 ip address 10.1.12.1 255.255.255.0
!
interface Vlan3
 ip address 10.1.13.1 255.255.255.0
!
interface Vlan4
 ip address 10.1.14.1 255.255.255.0
!
interface Vlan5
 ip address 10.1.15.1 255.255.255.0
!
interface Vlan99
 ip address 10.1.3.98 255.255.255.0

because vlan config is not shows up in the runnning config, so I have to show you the actual config that I put in

hq-core01#vlan data
hq-core01(vlan)#vlan 1
VLAN 1 modified:
hq-core01(vlan)#vlan 2
VLAN 2 added:
    Name: VLAN0002
hq-core01(vlan)#vlan 3
VLAN 3 added:
    Name: VLAN0003
hq-core01(vlan)#vlan 4
VLAN 4 added:
    Name: VLAN0004
hq-core01(vlan)#vlan 5
VLAN 5 added:
    Name: VLAN0005
hq-core01(vlan)#exit
APPLY completed.
Exiting....

Hq-core2

interface FastEthernet0/0
 ip address 10.1.2.2 255.255.255.0

interface FastEthernet1/0
 switchport mode trunk

interface Vlan1
 ip address 10.1.11.2 255.255.255.0
!
interface Vlan2
 ip address 10.1.12.2 255.255.255.0
!
interface Vlan3
 ip address 10.1.13.2 255.255.255.0
!
interface Vlan4
 ip address 10.1.14.2 255.255.255.0
!
interface Vlan5
 ip address 10.1.15.2 255.255.255.0

hq-core02#vlan data
hq-core02(vlan)#vlan 1
VLAN 1 modified:
hq-core02(vlan)#vlan 2
VLAN 2 added:
    Name: VLAN0002
hq-core02(vlan)#vlan 3
VLAN 3 added:
    Name: VLAN0003
hq-core02(vlan)#vlan 4
VLAN 4 added:
    Name: VLAN0004
hq-core02(vlan)#vlan 5
VLAN 5 added:
    Name: VLAN0005
hq-core02(vlan)#exit
APPLY completed.
Exiting....

Hq-inet

interface Loopback0
 ip address 200.1.1.1 255.255.255.0
!
interface FastEthernet0/0
 ip address 10.1.3.99 255.255.255.0

all ping-able and looks good ? later we start to advertise HQ LAN over the WAN

No comments:

Post a Comment