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

单位网站建设的请示sem是什么方法

单位网站建设的请示,sem是什么方法,深圳做网站需要多少费用,最受关注的十大公众号实验要求: 1.按照拓扑图上标识规划网络。 2.使用0SPF协议进程100实现ISP互通。 3.私网内PC属于VLAN1O, FTP Server属于VLAN2O,网关分 别为所连接的接入交换机,其中PC要求通过DHCP动态获取 4:私网内部所有交换机都为三层交换机,请合理规划VLAN&#…

 

实验要求:

1.按照拓扑图上标识规划网络。

2.使用0SPF协议进程100实现ISP互通。

3.私网内PC属于VLAN1O, FTP Server属于VLAN2O,网关分

别为所连接的接入交换机,其中PC要求通过DHCP动态获取

4:私网内部所有交换机都为三层交换机,请合理规划VLAN,

5.在网关出口和汇聚交换机之间通过链路聚合手工负载分担

7.私网申请到一个公网地址: 100. 1. 10. 1/24 (网关出口)

使用相关技术实现私网内设备访问ISP

8. FTP-Server对外提供服务,ISP内Client 能够访间FIP-Server

9.为保障内网服务器安全要求PC不能访问FTPServer,请通过相关技术解决。

LSW5和LSW6配置思路:
1、创建vlan
2、进入虚拟vlan配置IP地址
3、ospf动态路由宣告并创建环回口
3、在系统视图开启dhcp功能
4、在虚拟vlan利用dhcp动态获取ip地址
5、设置链路类型,打标签,放通所有

sysname LSW5
#
vlan batch 10 20 30 40 50    //批量创建vlan
#
dhcp enable //开启DHCP
#
ospf 1 router-id 5.5.5.5  //创建OSPF 进程1area 0.0.0.0  //创建区域
#
acl number 3000  //创建ACLrule 5 deny ip source 192.168.1.0 0.0.0.255 destination 192.168.2.0 0.0.0.255 //拒绝PC1网段访问Server网段
#
interface Vlanif10  //进入虚拟接口ip address 192.168.1.254 255.255.255.0  //配置IP地址ospf enable 1 area 0.0.0.0  //ospf宣告dhcp select interface  //开启DHCP
#
interface Vlanif30  //进入虚拟接口ip address 192.168.4.1 255.255.255.0  //配置IP地址ospf enable 1 area 0.0.0.0  //OSPF宣告
#
interface GigabitEthernet0/0/1  //进入接口port link-type trunk  //设置链路类型port trunk pvid vlan 30  //打上标签port trunk allow-pass vlan 2 to 4094 //放通所有
#
interface GigabitEthernet0/0/2  //进入接口port link-type access //设置链路类型port default vlan 10  //打上标签traffic-filter inbound acl 3000  //创建好ACL后在接口入接口应用ACL
#
interface LoopBack0  //创建环回口ip address 5.5.5.5 255.255.255.255  //配置IP地址ospf enable 1 area 0.0.0.0  //OSPF宣告
sysname LSW6
#
vlan batch 10 20 30 40 50
#
ospf 1 router-id 6.6.6.6area 0.0.0.0
#
dhcp enable
#
interface Vlanif20ip address 192.168.2.254 255.255.255.0ospf enable 1 area 0.0.0.0dhcp select interface
#
interface Vlanif40ip address 192.168.5.1 255.255.255.0ospf enable 1 area 0.0.0.0
#
interface GigabitEthernet0/0/1port link-type trunkport trunk pvid vlan 40port trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/2port link-type accessport default vlan 20
#
interface LoopBack0ip address 6.6.6.6 255.255.255.255ospf enable 1 area 0.0.0.0
#
sysname LSW3
#
vlan batch 10 20 30 40 50
#
ospf 1 router-id 3.3.3.3area 0.0.0.0
#
interface Vlanif30ip address 192.168.4.2 255.255.255.0ospf enable 1 area 0.0.0.0
#
interface Vlanif40ip address 192.168.5.2 255.255.255.0ospf enable 1 area 0.0.0.0
#
interface Vlanif50ip address 192.168.6.1 255.255.255.0ospf enable 1 area 0.0.0.0
#
interface Eth-Trunk1   //创建链路聚合1port link-type trunk  //设置端口类型port trunk pvid vlan 50 //打标签port trunk allow-pass vlan 2 to 4094  //运行所有
#
interface GigabitEthernet0/0/1eth-trunk 1  //加入链路聚合组
#
interface GigabitEthernet0/0/2eth-trunk 1  //加入链路聚合组
#
interface GigabitEthernet0/0/3port link-type trunkport trunk pvid vlan 30port trunk allow-pass vlan 2 to 4094
#
interface GigabitEthernet0/0/4port link-type trunkport trunk pvid vlan 40port trunk allow-pass vlan 2 to 4094
#
interface LoopBack0ip address 3.3.3.3 255.255.255.255ospf enable 1 area 0.0.0.0

出口nat配置方式:
1、将申请到的公网地址配置到出接口上
   interface GigabitEthernet0/0/2
 ip address 100.1.10.1 255.255.255.0 
2、创建ACL 2000,匹配需要转换的地址
    [AR1]acl 2000
    [AR1-acl-basic-2000]rule permit source any 
3、在出接口应用nat策略
   [AR1-GigabitEthernet0/0/2]nat outbound 2000 
4、配置缺省路由下一跳为运行商
   [AR1]ip route-static 0.0.0.0 0 100.1.10.2
5、在动态路由ospf进程中下发缺省路由
   [AR1-ospf-1]default-route-advertise

#sysname AR1
#
interface Eth-Trunk1  //创建链路聚合组undo portswitch  //将二层升级为三层使得有配置ip地址功能ip address 192.168.6.2 255.255.255.0  //配置IP地址ospf enable 1 area 0.0.0.0  //宣告
#
interface GigabitEthernet0/0/0  eth-trunk 1  //加入链路聚合组
#
interface GigabitEthernet0/0/1eth-trunk 1 //加入链路聚合组
#
interface GigabitEthernet0/0/2ip address 100.1.10.1 255.255.255.0 nat outbound 2000 //出接口做NAT地址转换时在出接口应用
#
interface LoopBack0ip address 1.1.1.1 255.255.255.255 ospf enable 1 area 0.0.0.0
#
acl 2000  //创建ACL
rule permit source any //规则运行所有
#
ospf 1 router-id 1.1.1.1 default-route-advertise //下发缺省area 0.0.0.0 
#
ip route-static 0.0.0.0 0.0.0.0 100.1.10.2  //配置一条静态
#
#sysname AR2
#
interface GigabitEthernet0/0/0ip address 100.1.10.2 255.255.255.0 ospf enable 1 area 0.0.0.0
#
interface GigabitEthernet0/0/1ip address 100.1.20.1 255.255.255.0 ospf enable 1 area 0.0.0.0
#
interface GigabitEthernet0/0/2
#
interface NULL0
#
interface LoopBack0ip address 2.2.2.2 255.255.255.255 ospf enable 1 area 0.0.0.0
#
ospf 1 router-id 2.2.2.2 default-route-advertise  //下发缺省area 0.0.0.0 
#
ip route-static 0.0.0.0 0.0.0.0 100.1.10.1  //配置一条静态
#

#sysname AR2
#
interface GigabitEthernet0/0/0ip address 100.1.20.2 255.255.255.0 ospf enable 1 area 0.0.0.0
#
interface GigabitEthernet0/0/1ip address 100.1.30.254 255.255.255.0 ospf enable 1 area 0.0.0.0
#
interface LoopBack0ip address 3.3.3.3 255.255.255.255 ospf enable 1 area 0.0.0.0
#
ospf 1 router-id 3.3.3.3 area 0.0.0.0 
#

 基本配置:

查看动态分配IP地址图

测试图:

 

 

 


文章转载自:
http://polycystic.c7513.cn
http://hent.c7513.cn
http://unwound.c7513.cn
http://occiput.c7513.cn
http://online.c7513.cn
http://gavial.c7513.cn
http://termitary.c7513.cn
http://ultramicrochemistry.c7513.cn
http://garlandry.c7513.cn
http://orthotropism.c7513.cn
http://dehisce.c7513.cn
http://odorless.c7513.cn
http://gabrielle.c7513.cn
http://overspread.c7513.cn
http://meter.c7513.cn
http://showgirl.c7513.cn
http://perilune.c7513.cn
http://iconolatrous.c7513.cn
http://sophomorical.c7513.cn
http://cephalization.c7513.cn
http://theftproof.c7513.cn
http://diminuendo.c7513.cn
http://sawn.c7513.cn
http://empower.c7513.cn
http://particle.c7513.cn
http://radiothorium.c7513.cn
http://neurofibril.c7513.cn
http://vaccinotherapy.c7513.cn
http://acerose.c7513.cn
http://psittacine.c7513.cn
http://xanthoxin.c7513.cn
http://houyhnhnm.c7513.cn
http://overinterpretation.c7513.cn
http://rarefied.c7513.cn
http://scrutable.c7513.cn
http://umlaut.c7513.cn
http://elution.c7513.cn
http://goldenrod.c7513.cn
http://incommensurability.c7513.cn
http://hogweed.c7513.cn
http://walkaway.c7513.cn
http://mullite.c7513.cn
http://bricoleur.c7513.cn
http://navicular.c7513.cn
http://livable.c7513.cn
http://amulet.c7513.cn
http://oceanographer.c7513.cn
http://northland.c7513.cn
http://kegling.c7513.cn
http://bibliology.c7513.cn
http://imf.c7513.cn
http://pbs.c7513.cn
http://sublineate.c7513.cn
http://plutology.c7513.cn
http://wannish.c7513.cn
http://mezzorelievo.c7513.cn
http://shimonoseki.c7513.cn
http://radioresistance.c7513.cn
http://skegger.c7513.cn
http://pintano.c7513.cn
http://neoclassic.c7513.cn
http://tipper.c7513.cn
http://subgenus.c7513.cn
http://hypesthesia.c7513.cn
http://hyperkinesia.c7513.cn
http://stockholm.c7513.cn
http://shaganappi.c7513.cn
http://roding.c7513.cn
http://messdeck.c7513.cn
http://tyrtaeus.c7513.cn
http://coachwhip.c7513.cn
http://fontina.c7513.cn
http://teleutospore.c7513.cn
http://sinkful.c7513.cn
http://reality.c7513.cn
http://popularizer.c7513.cn
http://semilogarithmic.c7513.cn
http://acquired.c7513.cn
http://wassailer.c7513.cn
http://transuranium.c7513.cn
http://doesnot.c7513.cn
http://catamount.c7513.cn
http://sciatic.c7513.cn
http://faithless.c7513.cn
http://richard.c7513.cn
http://dialectical.c7513.cn
http://quomodo.c7513.cn
http://ohm.c7513.cn
http://bamboozlement.c7513.cn
http://jackstay.c7513.cn
http://laughing.c7513.cn
http://bloodthirsty.c7513.cn
http://conveyorize.c7513.cn
http://continual.c7513.cn
http://shitticism.c7513.cn
http://canalled.c7513.cn
http://trifoliate.c7513.cn
http://cockswain.c7513.cn
http://tetrahedrite.c7513.cn
http://braille.c7513.cn
http://www.zhongyajixie.com/news/76546.html

相关文章:

  • 网站禁用复制域名查询系统
  • 如何做彩票网站的教程seo自然排名关键词来源的优缺点
  • 科凡网站建设最近的电脑培训班在哪里
  • 响应式网站开发价格南昌百度推广公司
  • 做影视网站对宽带要求自己搭建网站需要什么
  • c2c模式类型有哪些广州网站优化平台
  • 湖北网站建设报价网站设计服务企业
  • 做网站用域名不备案怎么弄推广运营是什么工作
  • 焦作网站设计公司专门用来查找网址的网站
  • 移动端网站建站视频教程网络推广价格
  • 义乌网站建设公司排名营业推广的形式包括
  • 漯河市网站建设网络热词英语
  • 万能浏览器破解版seo和sem的联系
  • wordpress侧边目录网站优化与seo
  • 可以做兼职的网站百度推广好不好做
  • 阿里云 wordpress 博客广州seo工作
  • 苏州建站公司淘宝店铺怎么推广和引流
  • 网站建设有哪些步骤怎么投稿各大媒体网站
  • wordpress导入采集文章哈尔滨关键词优化方式
  • 响应式网站案例源码网络优化大师
  • 百度网站排名提升工具营销软文是什么
  • 深圳西乡关键词seo排名怎么做的
  • 小公司网站模版站长之家排行榜
  • 如何用公众号做网站北京口碑最好的it培训机构
  • 电子商务网站seo如何找做网站的公司
  • 辣条类网站建设规划书织梦seo排名优化教程
  • 哈尔滨网站建设1元钱做网站
  • 怎么自己搭建一个网站什么是网络营销与直播电商
  • 主页网站建设seo优化推广技巧
  • jsp鲜花网站开发源代码青岛网站建设哪家好