Cisco Static Routing Commands
How to get in to Windows Device Manager
Microsoft Windows Vista and 7 users
- Click on the Start Orb.
- In the Start Search box type: device manager and then press enter and you should see something similar to the below example.
Windows 2003
- Open the Administrative Tools in Control Panel.
- Within the Administrative Tools click Computer Managemen
Microsoft Windows XP and 2000 users
- On the desktop right-click on My Computer and click Properties or open the Control Panel and double-click the System icon.
- In the System Properties window click the Hardware tab.
- In the Hardware tab click the Device Manager button.
- Click Start
- Click Settings
- Click Control Panel
- In the Control Panel double-click the Systems icon.
- In the System Properties window click the Hardware tab.
- In the Hardware tab click the Device Manager button and you should see something similar to the below example.
Enable DHCP in a Cisco Router
Go to privilege mood
Create a DHCP pool name " newpool"
IP address Client-ID/ Lease expiration Type
Hardware address
192.168.1.11 0001.439E.C9D3 -- Automatic
192.168.1.12 00D0.9705.3470 -- Automatic
- Router>enable
- Router#
- Router#configure terminal
- Router(config)#
Create a DHCP pool name " newpool"
- Router(config)#ip dhcp pool newpool
- Router(dhcp-config)#
- Router(dhcp-config)#network 192.168.1.0 255.255.255.0
- Router(dhcp-config)#default-router 192.168.1.1
- Router(dhcp-config)#dns-server 8.8.8.8
- Router(dhcp-config)#
- Router(config)#
- Router(config)#ip dhcp excluded-address 192.168.1.1 192.168.1.10
- Router#show ip dhcp binding
Hardware address
192.168.1.11 0001.439E.C9D3 -- Automatic
192.168.1.12 00D0.9705.3470 -- Automatic
Router(config)#ip route 192.168.100.0 255.255.255.0 192.168.1.2
192.168.100.0 = destination network
255.255.255.0 = subnet mask
192.168.1.2 = next-hop address
Router(config)#ip route 192.168.100.0 255.255.255.0 s0/0
255.255.255.0 = subnet mask
s0/0 = exit interface
Rip Protocol
Rip Protocol
Distance Vector protocol
Bellman Ford Algorithm
Matrix is Hops and Maximum Hop count is 15. 16 is unreachable
To privent looping it uses Maximum hop count, Route poisoning and spit horizon
Administrative Distant for RIP is 120
Update Time 30s
Invalid Time is 180s
Hold down time 180s
Flush time 240s
Rip 1
Rip 1 is class full
No VLSM
RIP2
Rip 2 is class less and
support VLSM
Manual route summarization
RIPng has to enable in every interface.
Configuration on RIP
Router(config)#router rip
Router(config-router)#version 2
Router(config-router)#network 0.0.0.0
Verifying Commands
Router#show ip protocols
Router#show ip route
Router#debug ip rip
Comments
Post a Comment