求助如何配置VPDN~~~贡献实验 祝:520情人节快乐
Fast traslate
Icon translate
R1(交换机)
interface Ethernet0/0
switchport access vlan 100
switchport mode access
!
interface Ethernet0/1
switchport access vlan 10
switchport mode access
!
interface Ethernet0/2
switchport access vlan 20
switchport mode access
!
interface Ethernet0/3
!
interface Vlan10
ip address 192.168.10.254 255.255.255.0
!
interface Vlan20
ip address 192.168.20.254 255.255.255.0
!
interface Vlan100
ip address 192.168.100.2 255.255.255.0
GW(网关路由)
ip dhcp excluded-address 100.1.1.1
ip dhcp excluded-address 200.1.1.1
!
ip dhcp pool PPPOE-LT
network 200.1.1.0 255.255.255.0
dns-server 114.114.114.114
default-router 200.1.1.1
!
ip dhcp pool PPPOE-DX
network 100.1.1.0 255.255.255.0
dns-server 114.114.114.114
default-router 100.1.1.1
interface Ethernet0/0
no switchport
ip address 200.1.1.1 255.255.255.0
!
interface Ethernet0/1
no switchport
ip address 100.1.1.1 255.255.255.0
!
interface Ethernet0/2
no switchport
ip address 192.168.100.1 255.255.255.0
R4
interface Ethernet0/0
no switchport
ip address dhcp
ip helper-address 200.1.1.1
R2
interface Ethernet0/0
no switchport
ip address dhcp
ip helper-address 100.1.1.1
R3
interface Loopback0
ip address 8.8.8.8 255.255.255.0
各位大佬们好,我不知道按这个思路配置是否正确,老师告诉我配置VPDN需要特殊的设备来做,请各位大佬指明错误和思路。
1.三层交换机正常使用SVI +接口和转换访问模式基础配置好(二层什么都没动)
2.GW使用DHCP和想用单臂、绑定PPPOE客户端模式、电信R4和联通R2想配置PPPOE拨号模式(老师实现不了)
3.R4和R2接口下面自动获取DHCP、中继模式 200.1.1.1 100.1.1.1 。
4.R3只配置了环回接口。
请大佬给出指点或分层步骤配置方案:
看不懂你写的东西,但只看需求的话
你的配置和思路应该是有点问题的
R2和R4要配的是PPPOE Server
意味着你是联通和电讯的工程师,给客户配PPPOE服务器
要先设定拨号用的帐户密码, 创建拨号组, PPPOE模板, 在接口映射拨号组和开起PPPOE功能等等
举个例子,R4 PPPOE 服务端配置如下:
username {用户名} password {密码}
ip local pool PPPOE 200.1.1.2 200.1.1.10
bba-group pppoe CCNA
virtual-template 1
int e0/0
ip add 200.1.1.1 255.255.255.0
pppoe enable group CCNA
no sh
int virtual-template 1
ip unnumbered e0/0
ip mtu 1492
peer default ip add pool PPPOE
ppp authentication chap
GW也是思路错了,你要做的是PPPOE Client
透过PPPOE拨号取得公网IP
而不是用自己的DHCP SERVER给自己分公网IP
给你个pppoe client模版吧:
int {外网接口}
no ip add
pppoe enable group global
pppoe-client dial-pool number 10
no sh
int dialer 1
ip add nego
ip mtu 1492
encap ppp
dialer pool 10
ppp chap hostname {用户名}
ppp chap password {密码}
ppp pap sent-username {用户名} password {密码}
其他的都簡單不算太难的东西,就是不太了解你说的这跟VPDN有啥麽关係 leort 发表于 2021-5-21 11:00
看不懂你写的东西,但只看需求的话
你的配置和思路应该是有点问题的
好的 谢谢
页:
[1]