PPPoE配置

news2024/11/25 12:23:56
  1. 实验需求
  1. 配置IP地址
  2. 使用PPPOE拨号上网
  3. 设置路由让直播业务部和营销部都可以访问外网

  1. 实验拓扑

  1. 实验步骤
  1. 配置 R1地址池
  1. 电信链路:

[Huawei]undo info-center  enable

Info: Information center is disabled.

[Huawei]sysname r1

[r1]ip pool zhibo  //配置地址池名为zhibo

Info: It's successful to create an IP address pool.

[r1-ip-pool-zhibo]network 100.1.1.0 mask 24  //客户端通过拨号所获取的网段地址

[r1-ip-pool-zhibo]gateway-list 100.1.1.1  //配置分配的网关地址

[r1-ip-pool-zhibo]quit

  1. 联通链路:

[r1]ip pool yingxiao  //配置地址池名为yingxiao

Info: It's successful to create an IP address pool. 

[r1-ip-pool-yingxiao]network 200.1.1.0 mask 24  //客户端通过拨号所获取的网段地址

[r1-ip-pool-yingxiao]gateway-list 200.1.1.1        //配置分配的网关地址

[r1-ip-pool-yingxiao]quit

  1. 配置R2、R3拨号使用的用户名和密码

[r1]aaa    

[r1-aaa]local-user zhibo password cipher zhibo  //创建用户名为zhibo、密码为zhibo的账号

Info: Add a new user.

[r1-aaa]local-user zhibo service-type ppp  //设置用户名为zhibo的服务类型为ppp

[r1-aaa]local-user yingxiao password cipher yingxiao  //创建用户名为yingxiao、密码为yingxiao的账号

Info: Add a new user.

[r1-aaa]local-user yingxiao service-type ppp

[r1-aaa]quit

  1. 配置VT接口,用于PPPoE认证并分配地址

[r1]interface Virtual-Template 1   //创建vt接口1

[r1-Virtual-Template1]ip address 100.1.1.1 24  //将网关地址配置在VT接口

[r1-Virtual-Template1]ppp authentication-mode chap  //配置ppp的认证类型为chap

[r1-Virtual-Template1]remote address pool zhibo  //调用为客户端分配地址的地址池zhibo

[r1-Virtual-Template1]quit

[r1]interface Virtual-Template 2   //创建vt接口2

[r1-Virtual-Template2]ip address 200.1.1.1 24

[r1-Virtual-Template2]ppp authentication-mode chap

[r1-Virtual-Template2]remote address pool yingxiao

[r1-Virtual-Template2]quit

  

  1. 在以太网接口使能PPPoE功能并绑定VT接口

[r1]interface g0/0/0

[r1-GigabitEthernet0/0/0]pppoe-server bind virtual-template 1  //设置本设备为pppoe的服务端,并且关联VT接口

[r1-GigabitEthernet0/0/0]quit

[r1]interface g0/0/1

[r1-GigabitEthernet0/0/1]pppoe-server bind virtual-template 2

  1. 配置R2、R3的PPPoE client拨号功能

 R2:

<Huawei>system-view

Enter system view, return user view with Ctrl+Z.

[Huawei]undo info-center enable

Info: Information center is disabled.

[Huawei]sysname r2

[r2]interface Dialer 0

[r2-Dialer0]dialer user user1

[r2-Dialer0]dialer bundle 1

[r2-Dialer0]ppp chap user zhibo

[r2-Dialer0]ppp chap password cipher zhibo

[r2-Dialer0]ip address ppp-negotiate

[r2-Dialer0]quit

R3:

<Huawei>system-view

Enter system view, return user view with Ctrl+Z.

[Huawei]undo info-center enable

Info: Information center is disabled.

[Huawei]sysname r2

[r3]interface Dialer 0

[r3-Dialer0]dialer user user1

[r3-Dialer0]dialer bundle 1

[r3-Dialer0]ppp chap user yingxiao       

[r3-Dialer0]ppp chap password cipher yingxiao

[r3-Dialer0]ip address ppp-negotiate

[r3-Dialer0]quit

  1. 建立PPPoE会话

[r2]interface g0/0/0

[r2-GigabitEthernet0/0/0]pppoe-client dial-bundle-number 1   

[r2-GigabitEthernet0/0/0]quit

[r3]interface g0/0/0

[r3-GigabitEthernet0/0/0]pppoe-client dial-bundle-number 1   

[r3-GigabitEthernet0/0/0]quit

  1. 查看客户端是否通过PPPoE获取IP地址

[r2]display ip interface brief

*down: administratively down

^down: standby

(l): loopback

(s): spoofing

The number of interface that is UP in Physical is 4

The number of interface that is DOWN in Physical is 1

The number of interface that is UP in Protocol is 2

The number of interface that is DOWN in Protocol is 3

Interface                         IP Address/Mask      Physical   Protocol 

Dialer0                           100.1.1.254/32       up         up(s)    

GigabitEthernet0/0/0              unassigned          up         down     

GigabitEthernet0/0/1              unassigned          up         down     

GigabitEthernet0/0/2              unassigned          down      down     

NULL0                           unassigned          up         up(s)   

[r3]display ip interface brief

*down: administratively down

^down: standby

(l): loopback

(s): spoofing

The number of interface that is UP in Physical is 4

The number of interface that is DOWN in Physical is 1

The number of interface that is UP in Protocol is 2

The number of interface that is DOWN in Protocol is 3

Interface                         IP Address/Mask      Physical   Protocol 

Dialer0                           200.1.1.254/32       up         up(s)    

GigabitEthernet0/0/0              unassigned           up         down     

GigabitEthernet0/0/1              unassigned           up         down     

GigabitEthernet0/0/2              unassigned           down       down     

NULL0                             unassigned           up         up(s)     

可以看到都获取到了IP地址

  1. 配置R2的G0/0/1和R3的G0/0/1的IP地址

[r2]interface g0/0/1        

[r2-GigabitEthernet0/0/1]ip address 192.168.1.254 24

[r2-GigabitEthernet0/0/1]quit

[r3]interface g0/0/1

[r3-GigabitEthernet0/0/1]ip address 192.168.2.254 24

[r3-GigabitEthernet0/0/1]quit

  1. 配置主机IP地址

  1. 配置NAT,让私网能去访问公网

[r2]acl 2000

[r2-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255

[r2-acl-basic-2000]quit

[r2]interface Dialer 0

[r2-Dialer0]nat outbound 2000

[r3]acl 2000

[r3-acl-basic-2000]rule permit source 192.168.2.0 0.0.0.255

[r3-acl-basic-2000]quit

[r3]interface Dialer 0

[r3-Dialer0]nat outbound 2000

[r3-Dialer0]quit

  1. 配置静态路由

R2:

[r2]ip route-static 1.1.1.0 24 100.1.1.1

R3:

[r3]ip route-static 1.1.1.0 24 200.1.1.1

  1. 实验调试
  1. PC1访问外网

PC>ping 1.1.1.1

Ping 1.1.1.1: 32 data bytes, Press Ctrl_C to break

From 1.1.1.1: bytes=32 seq=1 ttl=255 time=16 ms

From 1.1.1.1: bytes=32 seq=2 ttl=255 time=16 ms

From 1.1.1.1: bytes=32 seq=3 ttl=255 time=15 ms

From 1.1.1.1: bytes=32 seq=4 ttl=255 time=16 ms

From 1.1.1.1: bytes=32 seq=5 ttl=255 time=16 ms

--- 1.1.1.1 ping statistics ---

  5 packet(s) transmitted

  5 packet(s) received

  0.00% packet loss

  round-trip min/avg/max = 15/15/16 ms

  1. PC2访问外网

PC>ping 1.1.1.1

Ping 1.1.1.1: 32 data bytes, Press Ctrl_C to break

From 1.1.1.1: bytes=32 seq=1 ttl=255 time<1 ms

From 1.1.1.1: bytes=32 seq=2 ttl=255 time=15 ms

From 1.1.1.1: bytes=32 seq=3 ttl=255 time=16 ms

From 1.1.1.1: bytes=32 seq=4 ttl=255 time=16 ms

From 1.1.1.1: bytes=32 seq=5 ttl=255 time=15 ms

--- 1.1.1.1 ping statistics ---

  5 packet(s) transmitted

  5 packet(s) received

  0.00% packet loss

  round-trip min/avg/max = 0/12/16 ms

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1036653.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

多进程编程- POSIX命名信号量(named semaphore)

POSIX命名信号量是POSIX标准下的一个进程间同步原语&#xff0c;允许多个进程共享同一个信号量&#xff0c;从而实现进程间的同步和通信。这与无名信号量不同&#xff0c;无名信号量主要用于线程之间的同步&#xff0c;而不是进程之间。 命名信号量是“命名”的&#xff0c;因…

基于AVR128单片机抢答器控制系统

一、系统方案 二、硬件设计 原理图如下&#xff1a; 三、单片机软件设计 1、首先是系统初始化 uchar set_time 0 ; DDRA0XFF; PORTA0xff; DDRB0XFF; PORTB0x00; DDRC0X00; PORTC0xff; DDRD0XFc; PORTD0XFF; DDRE0XFF; PORTE0XFF; DDRF0XFF; PORTF0XF0; beer1(); timer1_i…

Linux-多路转接-select/poll

select/poll 五种IO模型对IO的正确理解何为高效的IO阻塞IO非阻塞IO设置文件描述符为非阻塞模式非阻塞IO例子 信号驱动IO异步IO多路转接 selct认识接口select返回值 基本使用select使用特点缺点 poll认识接口对select的改善缺点 五种IO模型 对IO的正确理解 &#x1f680;IO不仅…

MySQL学习笔记9

MySQL数据表中的数据类型&#xff1a; 在考虑数据类型、长度、标度和精度时&#xff0c;一定要仔细地进行短期和长远的规划&#xff0c;另外&#xff0c;公司制度和希望用户用什么方式访问数据也是要考虑的因素。开发人员应该了解数据的本质&#xff0c;以及数据在数据库里是如…

Sentinel故障转移及实现原理

Sentinel故障转移及实现原理 一、哨兵模式的基本工作流程二、判断实例下线三、选举新主库四、哨兵模式弊端五、哨兵集群判断实例下线六、哨兵集群判断实例下线详细工作过程七、哨兵集群的通信八、哨兵和客户端的通信九、总结 一、哨兵模式的基本工作流程 redis在运行时会开启一…

vue基础知识十五:说说你对slot的理解?slot使用场景有哪些?

一、slot是什么 在HTML中 slot 元素 &#xff0c;作为 Web Components 技术套件的一部分&#xff0c;是Web组件内的一个占位符 该占位符可以在后期使用自己的标记语言填充 举个栗子 <template id"element-details-template"><slot name"element-na…

(2022|ECCV,图像分割,VQ-SEG,AR Transformer)Make-A-Scene:利用人类先验进行基于场景的文本到图像生成

Make-A-Scene: Scene-Based Text-to-Image Generation with Human Priors 公众号&#xff1a;EDPJ&#xff08;添加 VX&#xff1a;CV_EDPJ 或直接进 Q 交流群&#xff1a;922230617 获取资料&#xff09; 目录 0. 摘要 1. 简介 2.相关工作 2.1. 图像生成 2.2. 图像标…

2023年汉字小达人区级自由报名明天开赛,3个新问题和往年真题练一练

明天9月25日&#xff0c;备受关注的2023年第十届上海小学生汉字小达人区级自由报名的比赛就要开始了&#xff0c;最近还是有几个“小迷糊”家长刚听说这个活动&#xff0c;问了几个问题&#xff0c;我觉得挺有普遍性的&#xff0c;所以再次给大家回答一下&#xff0c;希望能够帮…

redis漏洞修复:CVE-2022-35977、CVE-2023-22458、CVE-2023-28856

提示&#xff1a;文章写完后&#xff0c;目录可以自动生成&#xff0c;如何生成可参考右边的帮助文档 文章目录 前言一、漏洞内容二、现状三、更新redis下载镜像停止已有的容器启动新的容器 四、更新后的版本1. 查看日志2. 查看版本 总结 前言 漏扫发现机器上的redis版本有点低…

图像识别-YOLO V8安装部署-window-CPU-Pycharm

前言 安装过程中发现&#xff0c;YOLO V8一直在更新&#xff0c;现在是2023-9-20的版本&#xff0c;已经和1月份刚发布的不一样了。 eg: 目录已经变了&#xff0c;旧版预测:在ultralytics/yolo/v8/下detect 新版&#xff1a;ultralytics/models/yolo/detect/predict.py 1.安…

九、多项式朴素贝叶斯算法(Multinomial NB,Multinomial Naive Bayes)(有监督学习)

Multinomial Naive Bayes&#xff1a;用于多项式模型的Naive Bayes分类器 一、算法思路 多项式Naive Bayes分类器适用于离散特征分类&#xff08;如文本分类中的字数&#xff09; 多叉分布通常需要整数特征计数 不过&#xff0c;在实际应用中&#xff0c;分数计数&#xff08…

LeetCode刷题

一 【移除元素】 原题链接&#xff1a;27. 移除元素 - 力扣&#xff08;LeetCode&#xff09; 给你一个数组 nums 和一个值 val&#xff0c;你需要 原地 移除所有数值等于 val 的元素&#xff0c;并返回移除后数组的新长度。 不要使用额外的数组空间&#xff0c;你必须仅使用…

SLAM从入门到精通(机器人建模和仿真环境)

【 声明&#xff1a;版权所有&#xff0c;欢迎转载&#xff0c;请勿用于商业用途。 联系信箱&#xff1a;feixiaoxing 163.com】 很多同学学了ros&#xff0c;以为把publish、subscribe、消息、服务这些接口学好了就行。其实这是很大的误区。因为这些通信机制只是帮我们了解ros…

bean加载properties文件(spring)

1.开启Context命名空间 复制一下第二行的信息,然后粘贴一下,把粘贴过来的所有beans替换成context 2.使用context命名空间,加载指定的properties文件 3,使用#{}占位符读取加载的属性值 实际实例(在配置文件xml中写) 补充: 不加载系统属性的解释: 如果你在配置文件中配置的变量…

MyBatis友人帐之缓存

一、概述 1.1简介 什么是缓存 [ Cache ]&#xff1f; 存在内存中的临时数据。 将用户经常查询的数据放在缓存&#xff08;内存&#xff09;中&#xff0c;用户去查询数据就不用从磁盘上(关系型数据库数据文件)查询&#xff0c;从缓存中查询&#xff0c;从而提高查询效率&…

【SoC基础】硬件起源之晶体管的诞生

&#x1f4e2;&#xff1a;如果你也对机器人、人工智能感兴趣&#xff0c;看来我们志同道合✨ &#x1f4e2;&#xff1a;不妨浏览一下我的博客主页【https://blog.csdn.net/weixin_51244852】 &#x1f4e2;&#xff1a;文章若有幸对你有帮助&#xff0c;可点赞 &#x1f44d;…

Go语言入门篇

目录 一、基础数据类型 1.1 变量的定义方式 1.2 用%T输出变量的类型 二、复合数据类型 2.1 数组 2.1.2、数组的遍历 2.1.3 数组传参 2.2. 切片slice 2.2.1. 初始化切片 2.2.2. append向切片中追加元素 2.2.3. 切片的截取 2.3. map 2.3.1. map初始化 2.3.2. 添加和…

CSS3有哪些新特性

CSS3 引入了许多新特性&#xff0c;以增强样式设计和页面布局的能力&#xff0c;提供更多的视觉效果和交互性。以下是一些 CSS3 中的新特性&#xff1a; 圆角边框&#xff08;Border Radius&#xff09;&#xff1a;圆角的边框&#xff0c;而不是传统的方形边框。 <!DOCTY…

GLTF编辑器告诉你凹凸贴图的作用

什么是凹凸贴图 凹凸贴图&#xff08;Bump Mapping&#xff09;是一种计算机图形学中的技术&#xff0c;用于在表面上模拟微小的凹凸形状&#xff0c;从而增加了物体的细节和真实感。它可以在不改变物体几何形状的情况下&#xff0c;通过修改光照的反应&#xff0c;使表面看起来…

华为云云耀云服务器L实例评测 | WebVR性能测试

随着最近几年Web技术的快速发展&#xff0c;Web3D和WebVR在网页端效果越来越好。 本文讲述如何在云耀云服务器L实例上部署WebVR服务器&#xff0c;服务器代码里添加一个3D模型&#xff0c;然后再使用本地浏览器作为客户端来查看模型加载和交互情况&#xff0c;并体验WebVR。 …