华为配置l2tp隧道接口
时间: 2023-06-10 17:06:54 浏览: 229
华为 ME60 V800R010C10SPC500 配置指南 - L2TP接入配置
以下是配置华为L2TP隧道接口的步骤:
1. 配置隧道接口:
```
interface Tunnel0/0/0
tunnel-protocol l2tp
source GigabitEthernet 0/0/0
l2tp remote-peer 10.1.1.2
l2tp tunnel password simple 123456
l2tp local hostname HUAWEI
l2tp remote hostname CISCO
l2tp ppp authentication chap
```
2. 配置隧道中的PPPoE客户端:
```
interface GigabitEthernet 0/0/0
pppoe-client dial-bundle-number 1
pppoe-client dial-string 123456
```
3. 配置路由:
```
ip route-static 192.168.1.0 255.255.255.0 Tunnel0/0/0
```
其中,Tunnel0/0/0是隧道接口的名称,10.1.1.2是对端的L2TP服务器IP地址,123456是隧道密码,HUAWEI是本地主机名,CISCO是远程主机名,ppp authentication chap表示使用CHAP认证方式。GigabitEthernet 0/0/0是连接到PPPoE服务器的接口。192.168.1.0/24是需要通过隧道访问的目的网络。
阅读全文