Advertisement
tburton

Untitled

Jun 25th, 2018
488
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. User exec – before enable – Router>
  2. Privileged exec – after enable – Router#
  3.  
  4. Configure terminal - command to access configuration
  5. Interface mode - to configure one of the network interfaces.
  6. Line mode - to configure the console, AUX, Telnet, or SSH access.
  7.  
  8. Interface fa0/1 – to enter interface
  9. The hostname name global configuration command is used to assign a name.
  10. enable secret password global config command
  11. banner motd delimiter message delimiter command from global configuration mode.
  12. reload / erase startup-config – more hardcore version
  13.  
  14.  To determine the destination MAC address, the device uses ARP.
  15. ARP provides two basic functions:
  16. • Resolving IPv4 addresses to MAC addresses
  17. • Maintaining a table of mappings
  18.  The ARP request message includes: • Target IPv4 address • Target MAC address
  19. show ip arp
  20.  
  21. Before: maybe set clock rate on one router, and disable on second one
  22.  
  23.  
  24. 1. Give addresses to computers
  25.  
  26. STATIC ADDRESSING:
  27.  
  28. enable
  29. conf t
  30. interface serial 12/0
  31. ip address 172.17.1.1 255.255.255.0
  32. no shutdown
  33.  
  34. enable
  35. config t
  36. interface serial 13/0
  37. ip address 182.16.1.33 255.255.255.0
  38.  
  39. IF Router to router:
  40. interface ...
  41. ip address..
  42. clock rate 250000 (for those what has clock on wire)
  43. no shutdown
  44. exit
  45.  
  46. RIP:
  47. configure terminal
  48. router rip
  49. network 10.0.0.0 (add addresses of all networks)
  50.  
  51. RIP v2:
  52. configure terminal
  53. router rip
  54. version 2
  55. network 10.0.0.0 (add addresses of all networks)
  56. do wr
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement