Advertisement
neox

Untitled

Mar 23rd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. 
interface FastEthernet0/1
  2.  
  3. switchport access vlan 5
  4.  
  5. switchport mode access
  6.  
  7. interface FastEthernet0/2
  8.  
  9. switchport access vlan 5
  10. switchport mode access
  11.  
  12. interface FastEthernet0/3
  13. switchport access vlan 7
  14. switchport mode access
  15.  
  16.  
  17.  
  18. interface FastEthernet0/24
  19. switchport mode trunk
  20.  
  21. interface Vlan1
  22. ip address 192.168.4.2 255.255.255.224
  23.  
  24. ip default-gateway 192.168.4.1
  25.  
  26. ROUTER
  27.  
  28. hostname Router
  29.  
  30. interface FastEthernet0/0.1
  31. encapsulation dot1Q 1 native
  32. ip address 192.168.4.1 255.255.255.224
  33. !
  34. interface FastEthernet0/0.5
  35. encapsulation dot1Q 5
  36. ip address 192.168.4.33 255.255.255.240
  37. !
  38. interface FastEthernet0/0.7
  39. encapsulation dot1Q 7
  40. ip address 192.168.4.49 255.255.255.248
  41. !
  42. interface FastEthernet0/1
  43. no ip address
  44. duplex auto
  45. speed auto
  46. shutdown
  47. !
  48. interface Vlan1
  49. no ip address
  50. shutdown
  51. !
  52. ip classless
  53. !
  54. ip flow-export version 9
  55.  
  56. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement