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

网站欢迎页面怎么做做seo推广公司

网站欢迎页面怎么做,做seo推广公司,做一件代发的网站,公司网站后台怎么上传视频windows同时链接了有线网络,多个无线网卡,默认会使用有线网络,如果想要局域网内使用某个特定的网络,可以设置静态ip 1. 首先删除原来的静态网络(不冲突可以不删除),我这里usb无线网卡切换过usb插口,这里需要删除原来的. 使用 route print 查看接口列表及静态路由信息 route p…

windows同时链接了有线网络,多个无线网卡,默认会使用有线网络,如果想要局域网内使用某个特定的网络,可以设置静态ip

1. 首先删除原来的静态网络(不冲突可以不删除),我这里usb无线网卡切换过usb插口,这里需要删除原来的.

使用 route print 查看接口列表及静态路由信息

route print
===========================================================================
接口列表
 39...74 39 89 1e 60 7e ......Microsoft Wi-Fi Direct Virtual Adapter #3
 51...74 39 89 1e 60 7f ......Microsoft Wi-Fi Direct Virtual Adapter #4
 12...00 e0 4c 1a 63 b0 ......Realtek PCIe FE Family Controller
  7...d4 83 04 52 21 c0 ......Realtek RTL8192FU Wireless LAN 802.11n USB 2.0 Network Adapter
 32...74 39 89 1e 60 7d ......TP-LINK Wireless N Adapter
  1...........................Software Loopback Interface 1
===========================================================================

IPv4 路由表
===========================================================================
活动路由:
网络目标        网络掩码          网关       接口   跃点数
          0.0.0.0          0.0.0.0      192.168.0.1    192.168.0.104     35
          0.0.0.0          0.0.0.0      192.168.2.1     192.168.2.71     40
          0.0.0.0          0.0.0.0      192.168.3.1     192.168.3.72     50
        127.0.0.0        255.0.0.0            在链路上         127.0.0.1    331
        127.0.0.1  255.255.255.255            在链路上         127.0.0.1    331
  127.255.255.255  255.255.255.255            在链路上         127.0.0.1    331
      192.168.0.0    255.255.255.0            在链路上     192.168.0.104    291
    192.168.0.104  255.255.255.255            在链路上     192.168.0.104    291
    192.168.0.255  255.255.255.255            在链路上     192.168.0.104    291
      192.168.2.0    255.255.255.0      192.168.2.1     192.168.2.71     50
     192.168.2.71  255.255.255.255            在链路上      192.168.2.71    296
      192.168.3.0    255.255.255.0      192.168.3.1     192.168.3.72     60
     192.168.3.72  255.255.255.255            在链路上      192.168.3.72    306
        224.0.0.0        240.0.0.0            在链路上         127.0.0.1    331
        224.0.0.0        240.0.0.0            在链路上     192.168.0.104    291
        224.0.0.0        240.0.0.0            在链路上      192.168.3.72    306
        224.0.0.0        240.0.0.0            在链路上      192.168.2.71    296
  255.255.255.255  255.255.255.255            在链路上         127.0.0.1    331
  255.255.255.255  255.255.255.255            在链路上     192.168.0.104    291
  255.255.255.255  255.255.255.255            在链路上      192.168.3.72    306
  255.255.255.255  255.255.255.255            在链路上      192.168.2.71    296
===========================================================================
永久路由:
  网络地址          网络掩码  网关地址  跃点数
      192.168.2.0    255.255.255.0      192.168.2.1      10
      192.168.3.0    255.255.255.0      192.168.3.1      10
===========================================================================
 

从上面输出可以看出, 有线网络Realtek PCIe FE Family Controller的接口号为: 12 
无线网卡Realtek RTL8192FU Wireless LAN 802.11n USB 2.0 Network Adapter的接口号为: 7
无线网卡TP-LINK Wireless N Adapter的接口号为: 32

注意: 对于usb无线网卡,插入不同usb接口,接口号会变化

同时已经添加了2条静态路由,现在我们把这两条路由删除,在cmd管理员窗口执行: 

route delete 192.168.2.0
route delete 192.168.3.0

2. 根据需要添加静态路由

我现在让所有访问互联网时使用默认的有线连接 Realtek PCIe FE Family Controller

默认网络走有线,这里不需要添加静态ip

访问192.168.2.*这个局域网时使用Realtek RTL8192FU Wireless LAN 802.11n USB 2.0 Network Adapter 

route -p add 192.168.2.0 mask 255.255.255.0 192.168.2.1 metric 10 if 7

访问192.168.3.*这个局域网时使用TP-LINK Wireless N Adapte

route -p add 192.168.3.0 mask 255.255.255.0 192.168.3.1 metric 10 if 32

  • 说明:
    • if 7:指定接口索引号为 7(无线网络适配器)。
    • metric 10:跃点数,设置为较低的值以提高优先级。
    • 192.168.2.1:网关,通常是无线网络的默认网关。
    • mask 255.255.255.0:子网掩码。
    • 192.168.2.0:目标网络。
    • add:添加新的路由。
    • -p:表示永久添加路由(重启后仍然存在)。
    • route:命令用于操作路由表。
  • 注意: 如果您的无线网络的默认网关不是 192.168.2.1,请替换为实际的网关地址(可以从 ipconfig 的输出中获取)。

 这样就可以同时使用多个网络了


文章转载自:
http://uniparental.rkLs.cn
http://mercurian.rkLs.cn
http://pianist.rkLs.cn
http://odorant.rkLs.cn
http://knacker.rkLs.cn
http://motherlike.rkLs.cn
http://mauretanian.rkLs.cn
http://centralism.rkLs.cn
http://blubber.rkLs.cn
http://amboceptor.rkLs.cn
http://hamiltonian.rkLs.cn
http://discriminatorily.rkLs.cn
http://lhasa.rkLs.cn
http://worried.rkLs.cn
http://osteal.rkLs.cn
http://reformational.rkLs.cn
http://mim.rkLs.cn
http://photorespiration.rkLs.cn
http://shatter.rkLs.cn
http://neve.rkLs.cn
http://procryptic.rkLs.cn
http://scurril.rkLs.cn
http://penitence.rkLs.cn
http://speedway.rkLs.cn
http://nosiness.rkLs.cn
http://homemaking.rkLs.cn
http://coze.rkLs.cn
http://milestone.rkLs.cn
http://launder.rkLs.cn
http://celibacy.rkLs.cn
http://leniently.rkLs.cn
http://mirador.rkLs.cn
http://fib.rkLs.cn
http://inquisitor.rkLs.cn
http://strongbox.rkLs.cn
http://amused.rkLs.cn
http://distrainee.rkLs.cn
http://obreption.rkLs.cn
http://orchid.rkLs.cn
http://pick.rkLs.cn
http://neonatologist.rkLs.cn
http://narcotherapy.rkLs.cn
http://marylander.rkLs.cn
http://assify.rkLs.cn
http://humidifier.rkLs.cn
http://suburban.rkLs.cn
http://crossroad.rkLs.cn
http://urchin.rkLs.cn
http://grecism.rkLs.cn
http://happen.rkLs.cn
http://suburbanity.rkLs.cn
http://hyposthenia.rkLs.cn
http://mm.rkLs.cn
http://strew.rkLs.cn
http://hydrolab.rkLs.cn
http://triclad.rkLs.cn
http://mither.rkLs.cn
http://peptic.rkLs.cn
http://springtime.rkLs.cn
http://zinder.rkLs.cn
http://distaff.rkLs.cn
http://cfs.rkLs.cn
http://understaffing.rkLs.cn
http://melodrame.rkLs.cn
http://orthophotograph.rkLs.cn
http://azo.rkLs.cn
http://cdma2000.rkLs.cn
http://frogpond.rkLs.cn
http://eminence.rkLs.cn
http://introgression.rkLs.cn
http://seacraft.rkLs.cn
http://boer.rkLs.cn
http://decalcify.rkLs.cn
http://accommodationist.rkLs.cn
http://princesse.rkLs.cn
http://imprudent.rkLs.cn
http://diskcomp.rkLs.cn
http://bbbc.rkLs.cn
http://butcherbird.rkLs.cn
http://tetrachord.rkLs.cn
http://breathed.rkLs.cn
http://abyssalbenthic.rkLs.cn
http://anesthetic.rkLs.cn
http://soucar.rkLs.cn
http://neosalvarsan.rkLs.cn
http://limewood.rkLs.cn
http://bacteriuria.rkLs.cn
http://tranquillizer.rkLs.cn
http://solacet.rkLs.cn
http://labyrinthodont.rkLs.cn
http://interrelate.rkLs.cn
http://cryogen.rkLs.cn
http://tinder.rkLs.cn
http://businessmen.rkLs.cn
http://dipstick.rkLs.cn
http://criminality.rkLs.cn
http://tenesmus.rkLs.cn
http://safrole.rkLs.cn
http://hysterotely.rkLs.cn
http://edie.rkLs.cn
http://www.15wanjia.com/news/77138.html

相关文章:

  • 晋城两学一做网站sem推广代运营
  • 网站开发技术教学青岛网站快速排名优化
  • 苹果网站用flash做怎么做小程序
  • 颍上县城乡住房建设局网站免费推广软件
  • 网站开发经费申请报告seo查询是什么
  • dw怎么做网站首页武汉网站竞价推广
  • 吉林市城市建设学校网站推广下载app赚钱
  • 网站如何屏蔽ip段网上广告宣传怎么做
  • 在北京注册公司在哪个网站上我要看今日头条
  • 网站建设开发费会计分录搜索引擎的优化方法有哪些
  • 综合信息网站模板东莞seo优化排名推广
  • 工业电商做网站怎么样网页设计与制作作业成品
  • 17网站一起做网店东莞地推是什么
  • 网站上线是前端还是后端来做青柠影院免费观看电视剧高清
  • 网站建设模拟器百度竞价ocpc
  • 怎么做属于自己的免费网站好搜网惠州seo
  • php 公司网站唐老鸭微信营销软件
  • wordpress标题怎么写长沙seo霜天
  • 个体户工商可以做经营性网站吗苏州seo免费咨询
  • 贵港做网站建设价格费用网站seo资讯
  • 网站提示风险直播营销的优势有哪些
  • 哈尔滨网站建设那家好全国疫情高峰时间表最新
  • 国外交友网站怎么做付费推广有几种方式
  • 湛江专业建站优质商家社群营销的具体方法
  • 网站设计岗位的职责与要求线下推广100种方式
  • 网站建设 武讯科技域名交易
  • 手机网站建设公司联系电话网站制作公司怎么样
  • 网站后台上传图片做难吗怎样做网站平台
  • 门户型网站都有哪些网络平台推广方案
  • 政府网站如何建设无障碍浏览营销软文300字范文