设为首页 收藏本站
查看: 1292|回复: 0

[经验分享] Cisco 1841 路由器 连接ADSL modem的PPPoE配置

[复制链接]

尚未签到

发表于 2018-7-20 13:30:22 | 显示全部楼层 |阅读模式
  Cisco1841路由器连接ADSL modem的PPPoE配置
  案例一
  vpdn enable
  no vpdn logging
  !
  !
  interface Ethernet0/0
  ip address 192.168.0.1 255.255.255.0
  ip nat inside
  no ip mroute-cache
  !
  !
  !
  !
  interface Ethernet0/1
  no ip address
  pppoe enable
  pppoe-client dial-pool-number 1
  !
  interface Dialer1
  ip address negotiated
  ip nat outside
  ip mtu 1492
  encapsulation ppp
  no ip mroute-cache
  dialer pool 1
  dialer-group 1
  ppp authentication pap
  ppp pap sent-username dg48907653@163.gd password xxxxxxxx
  !

  ip>  no ip http server
  !
  dialer-list 1 protocol ip permit
  ip nat inside source list 1 interface Dialer1 overload
  ip route 0.0.0.0 0.0.0.0 dialer1
  access-list 1 permit 192.168.0.0 0.0.0.255
  !
  line con 0
  exec-timeout 0 0
  transport input none
  line vty 0 4
  login
  !
  end
  案例二
  经典思科1841ADSL的成功设置+DHCP的问题~!急~~!
  路由器下面的客户端全是XP。都是设为自动获取IP 地址。
  现像是在客户端上IPCONFIG  地址是0。0。0。0
  没有获得指定的IP地址,
  系统也没有获得169网段的地址。
  cisco1841#sh run
  Building configuration...
  Current configuration : 2970 bytes
  !
  version 12.4
  service timestamps debug datetime msec
  service timestamps log datetime msec
  no service password-encryption
  service dhcp
  !
  hostname cisco1841
  !
  boot-start-marker
  boot-end-marker
  !
  logging buffered 51200 warnings
  !
  no aaa new-model
  !
  resource policy
  !
  mmi polling-interval 60
  no mmi auto-configure
  no mmi pvc
  mmi snmp-timeout 180
  ip subnet-zero
  ip cef
  !
  !
  ip dhcp database 123
  no ip dhcp use vrf connected
  ip dhcp excluded-address 192.168.1.1
  ip dhcp ping packets 0
  !
  ip dhcp pool 123
   network 192.168.1.0 255.255.255.0
   default-router 192.168.1.1
   dns-server 202.106.0.20 202.106.46.151
  !
  !
  no ip domain lookup
  ip domain name yourdomain.com
  ip dhcp-server 192.168.1.1
  vpdn enable
  vpdn ip udp ignore checksum
  !
  vpdn-group pppoe
  request-dialin
  protocol pppoe
  !
  !
  username cisco privilege 15 secret 5 $1$ZKUk$YoVcdG31aDaIAn/mdK9qL0
  !
  !
  !
  interface FastEthernet0/0
  description $ETH-LAN$$ETH-SW-LAUNCH$$INTF-INFO-FE 0$
  ip address 192.168.1.1 255.255.255.0
  ip access-group 100 in
  ip nat inside
  duplex auto
  speed auto
  !
  interface FastEthernet0/1
  no ip address
  duplex auto
  speed auto
  pppoe enable
  pppoe-client dial-pool-number 1
  !
  interface Dialer1
  ip address negotiated
  ip access-group 100 in
  ip mtu 1492
  ip nat outside
  encapsulation ppp
  dialer pool 1
  dialer vpdn
  dialer-group 1
  no cdp enable
  ppp pap sent-username 1234567 password 0 1234567
  !

  ip>  ip route 0.0.0.0 0.0.0.0 Dialer1
  !
  no ip http server
  ip http authentication local

  ip http timeout-policy>  ip nat inside source list 1 interface Dialer1 overload
  !
  access-list 1 permit any
  access-list 100 deny
  access-list 100 deny
  access-list 100 permit ip any any
  dialer-list 1 protocol ip permit
  !
  control-plane
  !
  banner login ^C
  -----------------------------------------------------------------------
  Cisco Router and Security Device Manager (SDM) is installed on this
  device.
  This feature requires the one-time use of the username "cisco"
  with the password "cisco".
  Please change these publicly known initial credentials using SDM or  the
  IOS CLI.
  Here are the Cisco IOS commands.
  username <myuser> privilege 15 secret 0 <mypassword>
  no username cisco
  Replace <myuser> and <mypassword> with the username and  password you
  want to use.
  For more information about SDM please follow the instructions in the
  QUICK START
  GUIDE for your router or go to http://www.cisco.com/go/sdm
  -----------------------------------------------------------------------
  ^C
  !
  line con 0
  timeout login response 200
  login local
  line aux 0
  line vty 0 4
  timeout login response 200
  privilege level 15
  password gbicc_cisco
  login
  transport input telnet
  line vty 5 15
  privilege level 15
  password gbic_cisco
  login
  transport input telnet
  !
  end
  cisco1841#
  案例三
  
  假设E0接内网,E1接ADSL上外网
  第一步:配置vpdn
  vpdn enable(启用路由器的虚拟专用拨号网络---***d)
  vpdn-group office(建立一个vpdn组,)
  request-dialin(初始化一个***d tunnel,建立一个请求拨入的vpdn子组,)
  protocol pppoe(vpdn子组使用pppoe建立会话隧道)
  第二步: 配置路由器连接adsl modem的接口
  interface Ethernet1
  no ip address
  pppoe enable允许以太接口运行pppoe
  pppoe-client dial-pool-number 1将以太接口的pppoe拨号客户端加入拨号池1
  第三步:配置逻辑拨号接口:
  interface Dialer1
  ip address negotiated从adsl服务商动态协商得到ip地址
  ip nat outside为该接口启用NAT
  encapsulation ppp为该接口封装ppp协议
  dialer pool 1该接口使用1号拨号池进行拨号
  dialer-group 1该命令对于pppoe是意义不大的
  ppp authentication pap callin启用ppp pap验证
  ppp pap sent-username xxxxxxx password 0 yyyyyyy使用已经申请的用户名和口令
  第四步:配置内部网络接口
  interface Ethernet0(内部网络接口)
  ip address 10.1.1.1 255.255.255.0
  ip nat inside为该接口启用NAT
  第五步:配置路由器为内部网络主机提供dhcp服务
  ip dhcp excluded-address 10.1.1.1
  ip dhcp pool ABC
  import all(导入dns和wins server)
  network 10.1.1.0 255.255.255.0
  default-router 10.1.1.1
  第六步:配置NAT:
  access-list 1 permit 10.1.1.0 0.0.0.255
  ip nat inside source list 1 interface Dialer1 overload
  第七步:配置缺省路由
  ip route 0.0.0.0 0.0.0.0 Dialer1

运维网声明 1、欢迎大家加入本站运维交流群:群②:261659950 群⑤:202807635 群⑦870801961 群⑧679858003
2、本站所有主题由该帖子作者发表,该帖子作者与运维网享有帖子相关版权
3、所有作品的著作权均归原作者享有,请您和我们一样尊重他人的著作权等合法权益。如果您对作品感到满意,请购买正版
4、禁止制作、复制、发布和传播具有反动、淫秽、色情、暴力、凶杀等内容的信息,一经发现立即删除。若您因此触犯法律,一切后果自负,我们对此不承担任何责任
5、所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其内容的准确性、可靠性、正当性、安全性、合法性等负责,亦不承担任何法律责任
6、所有作品仅供您个人学习、研究或欣赏,不得用于商业或者其他用途,否则,一切后果均由您自己承担,我们对此不承担任何法律责任
7、如涉及侵犯版权等问题,请您及时通知我们,我们将立即采取措施予以解决
8、联系人Email:admin@iyunv.com 网址:www.yunweiku.com

所有资源均系网友上传或者通过网络收集,我们仅提供一个展示、介绍、观摩学习的平台,我们不对其承担任何法律责任,如涉及侵犯版权等问题,请您及时通知我们,我们将立即处理,联系人Email:kefu@iyunv.com,QQ:1061981298 本贴地址:https://www.yunweiku.com/thread-539250-1-1.html 上篇帖子: Cisco3550三层交换机配置与管理(实例) 下篇帖子: CISCO 1841 设置专线上网和端口映射
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

扫码加入运维网微信交流群X

扫码加入运维网微信交流群

扫描二维码加入运维网微信交流群,最新一手资源尽在官方微信交流群!快快加入我们吧...

扫描微信二维码查看详情

客服E-mail:kefu@iyunv.com 客服QQ:1061981298


QQ群⑦:运维网交流群⑦ QQ群⑧:运维网交流群⑧ k8s群:运维网kubernetes交流群


提醒:禁止发布任何违反国家法律、法规的言论与图片等内容;本站内容均来自个人观点与网络等信息,非本站认同之观点.


本站大部分资源是网友从网上搜集分享而来,其版权均归原作者及其网站所有,我们尊重他人的合法权益,如有内容侵犯您的合法权益,请及时与我们联系进行核实删除!



合作伙伴: 青云cloud

快速回复 返回顶部 返回列表