Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. sudo apt-get install minicom
  2. minicom -D /dev/ttyUSB0 -b 9600
  3.  
  4. ZKRATKY:
  5. show running-config ⇒ sh run
  6. show interfaces ⇒ sh int
  7. configure terminal ⇒ conf term
  8. interface fastEthernet 0/0 ⇒ int fastE0/0
  9. *******************************
  10. enable ... "root" mode
  11. disable ... "user" mode
  12. ctrl ] ... opusteni termianlu
  13.  
  14. router#show running-config ... vypis konfigurace
  15. router#show interfaces
  16.  
  17. RESER Laboratore:
  18. router#erase startup-config
  19. router#reload .... reload potvrdit NO, pro neulozeni conf.
  20.  
  21.  
  22.  
  23. NASTAVENI INTERFACu
  24. router#configure terminal .... konfig. rezim
  25. router(config)#interface fastEthernet 0/0
  26. router(config-if)#ip address 192.168.44.204 255.255.255.0
  27. router(config-if)#no shutdown
  28. router(config-if)#exit
  29. ( router(config)#interface fastEthernet 1/0
  30. router(config-if)#ip address 10.204.201.1 255.255.254.0
  31. router(config-if)#no shutdown
  32. router(config-if)#exit
  33. router(config)#interface fastEthernet 0/1
  34. router(config-if)#ip address 172.16.204.100 255.255.255.240
  35. router(config-if)#no shutdown
  36. router(config-if)#exit )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement