当前位置: 首页 > news >正文

2018做网站网上哪里可以免费打广告

2018做网站,网上哪里可以免费打广告,qq网页即时聊天,深圳网站建设前十名目录 实验条件网络拓朴需求 配置实现基础配置模拟运营商ISP配置ISP的DNS配置出口路由器OR基础配置PC1基础配置 出口路由器OR配置PPPOE拨号创建NAT(PAT端口复用) PC1测试结果 实验条件 网络拓朴 需求 OR使用PPPoE的方式向ISP发送拨号的用户名和密码,用户名&#xf…

目录

  • 实验条件
    • 网络拓朴
    • 需求
  • 配置实现
    • 基础配置
      • 模拟运营商`ISP`配置
      • ISP的DNS配置
      • 出口路由器`OR`基础配置
      • PC1基础配置
    • 出口路由器`OR`配置
      • `PPPOE拨号`
      • 创建NAT(PAT端口复用)
    • `PC1`测试结果

实验条件

网络拓朴

在这里插入图片描述

需求

  1. OR使用PPPoE的方式向ISP发送拨号的用户名和密码,用户名:SPOTO 密码:SPOTO123,ISP没有告知使用哪种认证方式,拨号成功后自动获取IP信息,以及本地自动生成一条默认路由指向ISP;
  2. 配置PAT实现PC1能ping通ISP上的8.8.8.8;# 配置实现

配置实现

基础配置

模拟运营商ISP配置

  1. 先创建用户库
  2. 再创建虚拟接口模板
    a. 配置虚拟接口模板的IP地址
    b. 指定封装ppp协议
    c. 指定认证协商协议(PAP/CHAP)
    d. NCP阶段, IP地址下发配置
  3. 用BBA组与虚拟接口模板关联
  4. 进入物理接口关联到BBA组
// 创建用户账号信息
ISP(config)#username cisco password ccie
// 创建ip地址池,可以是一个地址也可以是一个范围的地址
// 该地址池也可以用ip dhcp pool ipspool来创建,和dhcp服务共用池
ISP(config)#ip local pool ccieips 202.101.1.10// 创建虚拟接口模板
ISP(config)#int virtual-template 1
// 需要在虚拟接口上配置IP地址,而不是在物理接口上
ISP(config-if)#ip address 202.101.1.1 255.255.255.0
// LCP,链路层协商,在虚拟接口封装PPP协议
ISP(config-if)#encapsulation ppp
// 指定认证的协议
ISP(config-if)#ppp authentication pap
// NCP,网络层协商 从地址池中获取地址, 用来下发IP地址
ISP(config-if)#peer default ip address pool ccieips
// 配置空闲时长, 超过自动断开,单位秒
ISP(config-if)#ppp timeout idle ?<1-4294967>  Idle timeout value in seconds
// 做以一个优化 因为PPPoE会额外的添加8字节的开销,防止超过MTU导致丢包
ISP(config-if)#ip mtu 1492
ISP(config-if)#no shutdown 
ISP(config-if)#exit// 用BBA组与虚拟接口模板关联
ISP(config)#bba-group pppoe ISP
ISP(config-bba-group)#virtual-template 1
ISP(config-bba-group)#exitISP(config)#int e0/1
ISP(config-if)#no shutdown 
ISP(config-if)#pppoe enable group ISP
ISP(config-if)#exit

ISP的DNS配置

// 启用DNS服务
ISP(config)#ip dns server
// 添加解析记录
ISP(config)#ip host www.test.local 8.8.8.8
ISP(config)#int e0/0
ISP(config-if)#ip address 8.8.8.8 255.255.255.0
ISP(config-if)#no shutdown
ISP(config-if)#

出口路由器OR基础配置

配置dhcp服务

OR(config)#ip dhcp pool HOME
OR(dhcp-config)#network 192.168.10.0 255.255.255.0
OR(dhcp-config)#default-route 192.168.10.254
OR(dhcp-config)#dns-server 8.8.8.8 
OR(dhcp-config)#exit
OR(config)#ip dhcp excluded-address 192.168.10.254OR(config)#int e0/0
OR(config-if)#ip address 192.168.10.254 255.255.255.0 
OR(config-if)#no shutdown
OR(config-if)#

PC1基础配置

PC1(config)#no ip routing
PC1(config)#int e0/0
PC1(config-if)#ip address dhcp
PC1(config-if)#no shutdown

出口路由器OR配置

PPPOE拨号

  1. 先创建拨号口
    a. LCP
    b. 认证(PAP、CHAP)
    c. 下发默认地址
    d. NCP
    e. 创建拨号池
  2. 进入物理接口与上面创建的拨号池关联
// 先创建拨号口
OR(config-if)#int dialer 1
// LCP阶段指定封装PPP协议
OR(config-if)#encapsulation ppp
// 修正包大小
OR(config-if)#ip mtu 1492
// ip地址协商
OR(config-if)#ip address negotiated
// NCP阶段 添加一条默认路由到PPPOE服务端
OR(config-if)#ppp ipcp route default
// 创建拨号池
OR(config-if)#dialer pool 1      
OR(config-if)#no shutdown
OR(config-if)#exit// 进入接口关联拨号池
OR(config)#int e0/1
//OR(config-if)#pppoe enable group global 
OR(config-if)#pppoe-client dial-pool-number 1
OR(config-if)#no shutdown 

创建NAT(PAT端口复用)

OR(config-if)#int dialer 1
OR(config-if)#ip nat outside
OR(config-if)#int e0/0
OR(config-if)#ip nat inside
OR(config-if)#exit     
OR(config)#ip access-list standard NAT-PAT
OR(config-std-nacl)#permit 192.168.10.0 0.0.0.255
OR(config-std-nacl)#exit
OR(config)#ip nat inside source list NAT-PAT interface dialer 1 overload
OR(config)#do show ip nat translations

PC1测试结果

PC1#ping www.test.local
Translating "www.test.local"...domain server (8.8.8.8) [OK]Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 8.8.8.8, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/1/2 ms
PC1#

OR路由器

OR(config)#do show ip route                                             
Codes: L - local, C - connected, S - static, R - RIP, M - mobile, B - BGPD - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2E1 - OSPF external type 1, E2 - OSPF external type 2i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2ia - IS-IS inter area, * - candidate default, U - per-user static routeo - ODR, P - periodic downloaded static route, H - NHRP, l - LISPa - application route+ - replicated route, % - next hop overrideGateway of last resort is 101.1.1.254 to network 0.0.0.0S*    0.0.0.0/0 [1/0] via 101.1.1.254101.0.0.0/32 is subnetted, 2 subnets
C        101.1.1.1 is directly connected, Dialer1
C        101.1.1.254 is directly connected, Dialer1192.168.10.0/24 is variably subnetted, 2 subnets, 2 masks
C        192.168.10.0/24 is directly connected, Ethernet0/0
L        192.168.10.254/32 is directly connected, Ethernet0/0
OR(config)#do show ip nat translations
Pro Inside global      Inside local       Outside local      Outside global
icmp 101.1.1.1:0       192.168.10.1:0     8.8.8.8:0          8.8.8.8:0
OR(config)# 

文章转载自:
http://benny.c7497.cn
http://macropodous.c7497.cn
http://shuttlecock.c7497.cn
http://salangane.c7497.cn
http://materiality.c7497.cn
http://lattermost.c7497.cn
http://painkiller.c7497.cn
http://filename.c7497.cn
http://effusiveness.c7497.cn
http://pfennig.c7497.cn
http://amateurism.c7497.cn
http://furtive.c7497.cn
http://niceness.c7497.cn
http://seminivorous.c7497.cn
http://trusteeship.c7497.cn
http://dub.c7497.cn
http://unbroke.c7497.cn
http://backbiter.c7497.cn
http://anthropometric.c7497.cn
http://stuma.c7497.cn
http://legless.c7497.cn
http://goddaughter.c7497.cn
http://heckuva.c7497.cn
http://winnower.c7497.cn
http://unfalsifiable.c7497.cn
http://pithos.c7497.cn
http://deoxidise.c7497.cn
http://interplait.c7497.cn
http://rerebrace.c7497.cn
http://complementary.c7497.cn
http://baubee.c7497.cn
http://visit.c7497.cn
http://succinct.c7497.cn
http://appendiceal.c7497.cn
http://overcapacity.c7497.cn
http://moderatorship.c7497.cn
http://conclusion.c7497.cn
http://newdigate.c7497.cn
http://woodchat.c7497.cn
http://even.c7497.cn
http://renunciation.c7497.cn
http://posting.c7497.cn
http://sulphydryl.c7497.cn
http://prehensible.c7497.cn
http://gotham.c7497.cn
http://hypsicephalous.c7497.cn
http://tabulator.c7497.cn
http://manometry.c7497.cn
http://infiltrator.c7497.cn
http://coly.c7497.cn
http://intersensory.c7497.cn
http://digiboard.c7497.cn
http://oppositionist.c7497.cn
http://pansexual.c7497.cn
http://convection.c7497.cn
http://resistencia.c7497.cn
http://lpn.c7497.cn
http://folksinging.c7497.cn
http://intravascular.c7497.cn
http://chloric.c7497.cn
http://tergum.c7497.cn
http://hypoplastic.c7497.cn
http://rapidness.c7497.cn
http://gam.c7497.cn
http://leaved.c7497.cn
http://clubber.c7497.cn
http://cgm.c7497.cn
http://overclothes.c7497.cn
http://plotting.c7497.cn
http://bream.c7497.cn
http://sighthole.c7497.cn
http://vapidly.c7497.cn
http://nicaea.c7497.cn
http://precautionary.c7497.cn
http://icosidodecahedron.c7497.cn
http://tit.c7497.cn
http://cromerian.c7497.cn
http://unheard.c7497.cn
http://rhizomatous.c7497.cn
http://arsenate.c7497.cn
http://beryllium.c7497.cn
http://postholder.c7497.cn
http://platinum.c7497.cn
http://electress.c7497.cn
http://inversely.c7497.cn
http://killtime.c7497.cn
http://cacodylate.c7497.cn
http://nonfarm.c7497.cn
http://urgency.c7497.cn
http://predication.c7497.cn
http://philippopolis.c7497.cn
http://windshield.c7497.cn
http://footwall.c7497.cn
http://hungered.c7497.cn
http://melanesian.c7497.cn
http://silesia.c7497.cn
http://subalate.c7497.cn
http://felafel.c7497.cn
http://skycap.c7497.cn
http://summiteer.c7497.cn
http://www.zhongyajixie.com/news/85683.html

相关文章:

  • 网站推广位怎么设置海外网站推广的公司
  • 临淄网站制作搜狗站长管理平台
  • 设计网站建设书南昌企业营销策划有限公司
  • 古典水墨网站域名注册流程
  • 医药类网站建设评价免费涨热度软件
  • 库尔勒网站微信营销推广软件
  • 做智能网站系统下载软件成都排名seo公司
  • 做去自己的网站首页手机网站优化排名
  • 商城网站建设合同网站生成app工具
  • 邢台做网站公司关键词推广优化
  • wordpress如何添加301规则google seo 优化教程
  • 空间网站链接怎么做quark搜索引擎入口
  • 环保公司网站模板揭阳新站seo方案
  • ps网站参考线怎么做软文推广页面
  • 手机网站域名哪里注册十大新媒体平台有哪些
  • 做游戏CG分享的网站seo有什么作用
  • 网站的流量有什么用网站优化推广排名
  • 百度网站下拉怎么做互联网推广
  • 网站怎么才能被百度收录排名优化推广
  • 小型网站的建设方案网站建设策划书
  • 吉安网站开发潍坊自动seo
  • 网站建设公司的职责游戏代理加盟
  • 个人设计作品集seo网页推广
  • 网站首页怎么做全屏swf各大网站提交入口
  • 扬州网站建设费用网络营销师证
  • 梵克雅宝官网中国官方网站唐山百度搜索排名优化
  • 创立制作网站公司中央电视台新闻联播广告价格
  • 企业自助建站的网站重庆好的seo平台
  • 服务器做php网站吗网站设计论文
  • 某某网站安全建设方案sem竞价