发布网友
共3个回答
热心网友
①使用路由器的IP地址(查看说明书和路由器底部都有提示)比如:192.168.1.1
②网络参数→WAN口→WAN口连接类型→选择PPPOE
③此时就会弹出输入上网账号、上网口令、确认口令等选项的设置框。
④正确填写相关讯息之后,勿忘点击保存,再重启路由器,路由器就会自动拨号了。
参考资料 http://jingyan.baidu.com/article/e3c78d4948f03c4c85f51f.html
热心网友
首先在以太网口启用PPPoE
int
f0/1
pppoe
enable
group
global
pppoe-client
dial-pool-number
1
然后配置拨号虚拟端口
int
dialer0
ip
add
negotiated
encap
ppp
dialer
pool
1
dialer-group
1
ppp
auth
chap
callin
ppp
chap
hostname
帐号
ppp
chap
password
密码
热心网友
思科1841路由器宽带拨号设置命令:
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 电信的帐号 password 密码
!
ip classless
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