Telnet Cmds


 

Home Up Virus-Worms Search Contact Us Top Page 1 Top Page 1

Home
Up
Cisco Exec Cmds
Cisco Show Cmds
Telnet Cmds
Test Cmd

Cisco Exec Cmds Cisco Show Cmds Telnet Cmds Test Cmd

Router Telnet Commands 1

  View the Ethernet IP  
  From the enable command prompt:  
  Router#wr term  
  This will show the running configuration.  
  Within the configuration, you will see an interface ethernet 0 section:  
  interface Ethernet0  
  ip address 38.150.93.1 255.255.255.0  
  no ip directed-broadcast  
     
  View the Serial IP  
  From the enable command prompt:  
  Router#wr term  
  Within the configuration, you will see an interface serial 0 section:  
  interface Serial0  
  ip address 38.21.10.100 255.255.255.0  
  ip broadcast-address 38.21.10.255  
  ip access-group 106 in  
  encapsulation frame-relay  
  bandwidth 56  
  no fair-queue  
  frame-relay map ip 38.21.10.1 500 IETF  
     
  View the Default Route  
  From the enable command prompt:  
  Router#wr term  
  Within the configuration, you will see an ip route section.   
  In the ip route section, look for a route:  
  ip route 0.0.0.0 0.0.0.0 38.167.29.1  
  The last ip address is the POP ip.  
     
  View the Filters  
  From the enable command prompt:  
  Router#wr term  
  Under interface serial 0, look for:  
  ip access-group 104 in  
  ip access-group 105 out  
  This means that access-group 104 is the inbound filter set and  
  access-group 105 is the outbound filter set.  
  Then, continue to look in the configuration for the access-list statements:  
     
  (Example access-list statements)  
  access-list 104 deny   ip 38.166.101.0 0.0.0.255 any  
  access-list 104 permit tcp any any established  
  access-list 104 permit tcp any eq ftp-data any gt 1023  
  access-list 104 permit udp any eq domain any gt 1023  
  access-list 104 permit udp any eq domain any eq domain  
  access-list 104 permit icmp any any  
  access-list 104 permit udp any eq snmp any gt 1023  
  access-list 105 deny   ip any 38.166.101.0 0.0.0.255  
  access-list 105 permit tcp any any established  
  access-list 105 permit tcp any any eq ftp  
  access-list 105 deny   udp any eq netbios-ns any  
  access-list 105 deny   udp any eq netbios-dgm any  
  access-list 105 permit ip any any  
     
  View the Bandwidth  
  From the enable command prompt:  
  Router#wr term  
  Within the config, you will see an interface serial 0 section:  
  interface Serial0  
  ip address 38.21.10.100 255.255.255.0  
  ip broadcast-address 38.21.10.255  
  ip access-group 106 in  
  encapsulation frame-relay  
  bandwidth 56  
  no fair-queue  
  frame-relay map ip 38.21.10.1 500 IETF  
     
  Add a Static Route  
  From the enable command prompt:  
  Cisco#config t  
  Enter configuration commands, one per line.  End with CNTL/Z.  
  Cisco(config)#ip route DEST.DEST.DEST.DEST MASK.MASK.MASK.MASK GATE.GATE.GATE.GATE  
  where: DEST.DEST.DEST.DEST = The destination network the static route is for  
         MASK.MASK.MASK.MASK = The subnet mask of the destination network  
         GATE.GATE.GATE.GATE = The gateway of the static route  
  Example route statement:  
  ip route 38.222.75.0 255.255.255.0 38.20.5.1  
  Cisco(config)#^Z (hit <control> z)  
     
  Write the entry to memory:  
  Cisco#wr mem  
  Building configuration...  
  [OK]  
     
  Change the Dial Number  
  At the prompt:  
  Type en to put the router in enable mode:  
  test.com>en  
  The password should be the same as the one used to telnet in.  
  Password:  
  To view the router's configuration, type:  
  test.com#show config  
  There will be a line in the configuration that says:  
  dialer map IP 38.1.1.1 speed 64 name LD3330 2707000  
  The 2707000 is the dial number.  
  NOTE: Record what interface the dialer map IP line is under  
  because you will need to use that interface when changing the number.  
     
  Type config t to configure from terminal.  
  test.com#config t  
  Enter configuration commands, one per line.  End with CNTL/Z.  
  Enter the interface that the dialer map IP line is under:  
  test.com(config)#interface BRI0  
  Add in the new dialer map IP line with the new phone number:  
  test.com(config)#dialer map IP 38.1.1.1 speed 64 name LD3330 [new number]  
  Now, remove the old dialer map IP line.  
  To remove a line, type no and then the line.  
  For example, to remove the old dialer map IP, type:  
  test.com(config)#no dialer map IP 38.1.1.1 speed 64 name LD3330 2707020  
  Now leave config mode:  
  test.com(config)# [control] z  
  Save changes:  
  test.com# write mem  
  Building configuration...  
  [OK]  
  Verify the new number is in the config:  
  test.com#show config  
  The new number should be in the dialer map IP line.  
     
  Turn Filters On and Off  
  From the enable command prompt:  
  To turn the filters off:  
  Router#configure terminal  
  Router(config)#interface Serial0  
  Router(config-if)#no ip access-group 104 in  
  Router(config-if)#no ip access-group 105 out  
  Router(config-if)# Hit CTRL-Z  
  Router#wr mem  
  Building configuration...  
  [OK]  
  Router#  
     
  To turn the filters on:  
  Router#configure terminal  
  Router(config)#interface Serial0  
  Router(config-if)#ip access-group 104 in  
  Router(config-if)#ip access-group 105 out  
  Router(config-if)# Hit CTRL-Z  
  Router#wr mem  
  Building configuration...  
  [OK]  
  Router#  
     
  Ping from the Router  
  From the enable command prompt, type:  
  Cisco#ping <hostname>  
  Example:  
  Cisco#ping 38.8.14.2  
  Traceroute from the Router  
  From the enable command prompt, type:  
  Cisco#traceroute <hostname>  
  Cisco#traceroute <IP address>  
  Example:  
  Cisco#Traceroute 38.8.14.2