Routers: Modular Fixed
Routers: Modular Fixed
Modular Fixed
Modular Routers
These type of routers have up gradable slots, and the number
of ports can be increased just by adding cards in the slots.
Fixed Routers
These types of routers have fixed number of ports.
1. Ethernet It is a LAN interface. Some of the models have an
RJ45 port for 10baseT or 10/100. And some other have a 15 pin
female connector AUI (Attachment Unit Interface).
Router# Config t
Router (Config)#
The “Clock” Command
Router#Write Memory
To configure Hostname (or) Identification of
Router over the network.
Router#conf t
Router(config)#Hostname R_2503
Router(config)#^Z
To configure Logging banner.
Router#conf t
Router(config)#Banner Motd #
Enter text message………….#
Router(config)#^Z
Router Password Configuration
1. Previlege Password
2. Virtual Terminal Password
3. Console Password
4. Auxillary Password
Virtual Terminal Password
sessions.
Router#conf t
Router(config)#Line vty 0 4
Router(config-line)#Login
Router(config-line)#password cisco
Router(config-line)#^Z
Console Password
Router#conf t
Router(config)#Line Console 0
Router(config-line)#Login
Router(config-line)#Password cisco
Router(config-line)#^Z
Auxillary Password
Router#conf t
Router(config)#Line Aux 0
Router(config-line)#Login
Router(config-line)#Password cisco
Router(config-line)#^Z
Leased line WAN Setup
Case 2: The distance between the two locations is less than 5Km.
Requirements
A pair of Routers, Leased line and pair of leased line modem.
PPP(Point-to-Point) using PAP protocol
S 0 172.16.1.1 172.16.1.2 S 0
Router A Router B
(ISDN) (Zoom)
E 0 1.50 E 0 5.50
1.4 1.1 5.4 5.1
1.3 1.2 5.3 5.2
(Config)# int S 0
(Config-if)# ip address 172.16.1.1 255.255.0.0
(Config-if)# clock rate 56000(for DCE)
(Config-if)# bandwidth 64
(Config-if)# no shut
(Config-if)# exit
(Config)# ip routing
(Config-Router)# ip route 192.168.5.0 255.255.255.0 172.16.1.2
(Config)# int S 0
(Config-if)# encapsulation ppp
(Config-if)# ppp authentication PAP
(Config-if)# ppp PAP sent-username zoom password cisco
Configuration of Router B
--------------------------------
# Config t
(Config)# int E 0
(Config-if)# ip address 192.168.5.50 255.255.255.0
(Config-if)# no shut
(Config-if)# exit
(Config)# int S 0
(Config-if)# ip address 172.16.1.2 255.255.0.0
(Config-if)# clock rate 56000(for DCE)
(Config-if)# bandwidth 64
(Config-if)# no shut
(Config-if)# exit
(Config)# ip routing
(Config-Router)# ip route 192.168.1.0 255.255.255.0 172.16.1.1
(Config)# int S 0
(Config-if)# encapsulation ppp
(Config-if)# ppp authentication PAP
(Config-if)# ppp PAP sent-username ISP password cisco