Advertisement
tirabytes

Cisco IOS: DSL Configurations

Sep 2nd, 2012
935
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.93 KB | None | 0 0
  1. ################## ADSL
  2. !
  3. interface ATM0
  4. dsl operating-mode auto
  5. exit
  6. no shut
  7. !
  8. interface ATM0.1 point-to-point
  9. pvc 0/100
  10. encapsulation aal5mux ppp dialer
  11. dialer pool-member 1
  12. !
  13. exit
  14. !
  15. interface Dialer0
  16. description ## ISP INTERFACE ##
  17. ip address negotiated
  18. no ip redirects
  19. no ip unreachables
  20. no ip proxy-arp
  21. encapsulation ppp
  22. dialer pool 1
  23. dialer-group 1
  24. ppp pap sent-username x@y.com password xyxyxy
  25. ppp ipcp dns request
  26. ppp ipcp route default
  27. no cdp enable
  28. no shut
  29. !
  30. !
  31. dialer-list 1 protocol ip permit
  32. !
  33.  
  34. ################## VDSL
  35. !
  36. interface Ethernet0
  37. no ip address
  38. !
  39. interface Ethernet0.10
  40. encapsulation dot1Q 10
  41. pppoe-client dial-pool-number 1
  42. !
  43. interface Dialer0
  44. description ## ISP INTERFACE ##
  45. mtu 1492
  46. ip address negotiated
  47. no ip redirects
  48. no ip unreachables
  49. no ip proxy-arp
  50. encapsulation ppp
  51. dialer pool 1
  52. dialer-group 1
  53. ppp pap sent-username x@y.com password xyxyxy
  54. ppp ipcp dns request
  55. ppp ipcp route default
  56. no cdp enable
  57. no shut
  58. !
  59. dialer-list 1 protocol ip permit
  60. !
  61.  
  62.  
  63. ################## EUBA
  64. !
  65. interface ATM0
  66. no ip address
  67. no atm ilmi-keepalive
  68. no shut
  69. !
  70. interface ATM0.110 point-to-point
  71. description EUBA 0/110 PVC to ISP
  72. pvc euba 0/110
  73. bridge-dot1q encap 10
  74. tx-ring-limit 3
  75. pppoe-client dial-pool-number 1
  76. !
  77.  
  78. ################## SHDSL (2Pair)
  79. !
  80. controller SHDSL 0
  81. dsl-group pairs 0
  82. !
  83. interface Ethernet0
  84. description ## ISP INTERFACE ##
  85. ip address [IP ADDRESS]
  86. no ip redirects
  87. no ip unreachables
  88. no ip proxy-arp
  89.  
  90.  
  91. ################## SHDSL (4Pair)
  92. !
  93. controller SHDSL 0
  94. dsl-group pairs 0, 2 efm-bond
  95. shdsl annex B-G
  96. !
  97. !
  98. interface Ethernet0
  99. description ## ISP INTERFACE ##
  100. ip address [IP ADDRESS]
  101. no ip redirects
  102. no ip unreachables
  103. no ip proxy-arp
  104.  
  105.  
  106. ################### Optimized MTU (only use when needed)
  107.  
  108. 1500 for default
  109. 1478 for PPPoA/VC-MUX
  110. 1470 for PPPoA/LLC
  111. 1446 for PPPoE over ATM/LLC
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement