Advertisement
mohas8

Untitled

Nov 19th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.45 KB | None | 0 0
  1. Router#en
  2. Router#conf t
  3. Enter configuration commands, one per line.  End with CNTL/Z.
  4. Router(config)#int Gig0/0
  5. %Invalid interface type and number
  6. Router(config)#int Gig0/0/0
  7. Router(config-if)#ip address 192.168.0.1 255.255.255.0
  8. Router(config-if)#no shutdown
  9.  
  10. Router(config-if)#
  11. %LINK-5-CHANGED: Interface GigabitEthernet0/0/0, changed state to up
  12.  
  13. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  14. do write memory
  15. Building configuration...
  16. [OK]
  17. Router(config-if)#ip dhcp pool net1
  18. Router(dhcp-config)#ip address 192.168.0.1 255.255.255.0
  19.                     ^
  20. % Invalid input detected at '^' marker.
  21.    
  22. Router(dhcp-config)#network 192.168.0.1 255.255.255.0
  23. Router(dhcp-config)#exit
  24. Router(config)#
  25. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
  26.  
  27. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  28.  
  29. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
  30.  
  31. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  32.  
  33. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
  34.  
  35. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  36.  
  37. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
  38.  
  39. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  40.  
  41. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to down
  42.  
  43. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/0, changed state to up
  44. en
  45. % Ambiguous command: "en"
  46. Router(config)#exit
  47. Router#
  48. %SYS-5-CONFIG_I: Configured from console by console
  49.  
  50. Router#en
  51. Router#conf t
  52. Enter configuration commands, one per line.  End with CNTL/Z.
  53. Router(config)#int Gig0/0/0
  54. Router(config-if)#int Gig0/0/1
  55. Router(config-if)#ip address 128.1.1.1 255.255.0.0
  56. Router(config-if)#no shutdown
  57.  
  58. Router(config-if)#
  59. %LINK-5-CHANGED: Interface GigabitEthernet0/0/1, changed state to up
  60.  
  61. %LINEPROTO-5-UPDOWN: Line protocol on Interface GigabitEthernet0/0/1, changed state to up
  62. do write memory
  63. Building configuration...
  64. [OK]
  65. Router(config-if)#network 128.1.1.1 255.255.0.0
  66.                    ^
  67. % Invalid input detected at '^' marker.
  68.    
  69. Router(config-if)#ip dhcp pool net2
  70. Router(dhcp-config)#network 128.1.1.1 255.255.0.0
  71. Router(dhcp-config)#exit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement