If I have a pair of routers (1721) each having one serial interface and one FastEthernet interface, then having set up each interface, is it okay to just have one defined static route?
If I have one defined static route, then do I anything else? Is it appropriate to have helper-address, name-server, and dhcp information defined on each router?
As an example, please read and critique the below configuration (will use Class A Private address for illustrations):
!
! Router A
!
Version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Router A
!
enable password 7 ***********
!
no ip subnet-zero
no ip domain-lookup
!
interface FastEthernet0
description router A to router B
ip address 10.0.1.1 255.255.255.0
ip helper-address 10.0.1.10
!
interface serial0
description router A to router B
ip unnumbered FastEthernet0
encapsulation ppp
!
ip classless
ip route 10.0.1.0 255.255.255.0 10.0.1.1
no ip http server
!Router B
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Router B
!
enable password 7 ******************
!
no ip subnet-zero
no ip domain-lookup
!
interface FastEthernet0
description router B to router A
ip address 10.0.2.1 255.255.255.0
!
interface Serial0
description connected to Clarendon
ip unnumbered FastEthernet0
encapsulation ppp
!
ip classless
ip route 10.0.2.0 255.255.255.0 10.0.2.1
no ip http server
Looking forward to hearing feedback.
Thanxs in advance...
Inquiring Minds,
![[sadeyes] [sadeyes] [sadeyes]](/data/assets/smilies/sadeyes.gif)
If I have one defined static route, then do I anything else? Is it appropriate to have helper-address, name-server, and dhcp information defined on each router?
As an example, please read and critique the below configuration (will use Class A Private address for illustrations):
!
! Router A
!
Version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Router A
!
enable password 7 ***********
!
no ip subnet-zero
no ip domain-lookup
!
interface FastEthernet0
description router A to router B
ip address 10.0.1.1 255.255.255.0
ip helper-address 10.0.1.10
!
interface serial0
description router A to router B
ip unnumbered FastEthernet0
encapsulation ppp
!
ip classless
ip route 10.0.1.0 255.255.255.0 10.0.1.1
no ip http server
!Router B
!
version 12.2
service timestamps debug uptime
service timestamps log uptime
service password-encryption
!
hostname Router B
!
enable password 7 ******************
!
no ip subnet-zero
no ip domain-lookup
!
interface FastEthernet0
description router B to router A
ip address 10.0.2.1 255.255.255.0
!
interface Serial0
description connected to Clarendon
ip unnumbered FastEthernet0
encapsulation ppp
!
ip classless
ip route 10.0.2.0 255.255.255.0 10.0.2.1
no ip http server
Looking forward to hearing feedback.
Thanxs in advance...
Inquiring Minds,
![[sadeyes] [sadeyes] [sadeyes]](/data/assets/smilies/sadeyes.gif)