给网卡配置多个IP地址(win/linux)

资讯 2024-07-03 阅读:163 评论:0
解决方案:在同一个网卡上配置两个不同网段的IP地址:Solution: Configure two different IP addresses on the same web card:       &nb...
美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

解决方案:在同一个网卡上配置两个不同网段的IP地址:

Solution: Configure two different IP addresses on the same web card:

                  互联网IP:192.168.0.222       网关:192.168.0.1       子网掩码:255.255.225.0

& nbsp; & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; Internet IP: 192.168.0.222      gateway: 192.168.0.1  & nbsp; & nbsp; & nbsp; subnet mask: 255.255.225.0

                  局域网IP:172.19.8.1             网关:172.19.0.1         子网掩码:255.255.0.0

& nbsp; & nbsp; & nbsp; & nbsp;     & nbsp; LAN IP: 172.19.8.1              gateway: 172.19.1.1      & nbsp; & nbsp; & nbsp; & nbsp; & nbsp; & nbsp;   subnet mask: 255.255.0.0

1、设置Internet的IPV4属性,使用获取IP的方式,输入自己的互联网的IP地址、网关、子网掩码和DNS(必须有,否则互联网虽然显示网络已连接,但是却无法上网)

1. Set up Internet IPV4 properties and enter their Internet IP addresses, gateways, subnet masks and DNSs using access to IPs (if necessary, otherwise the Internet shows that the network is connected but cannot access the Internet)

2、点击高级,进入TCP/IP设置页面,给这个网卡设置两个IP地址、对应的子网掩码以及互联网的默认网关

2. Click on advanced, enter the TCP/IP setup page, set up two IP addresses for this card, corresponding subnet mask and default gateways for the Internet

3、然后进入cmd写两条软路由指令

Three, then enter cmd and write two soft route instructions.

route -p add 172.19.0.0 mask 255.255.0.0 172.19.8.1 metric 20

(意思是如果检测到172.19网段的地址,就跳转到172.19.8.1这个IP;如果不是就跳转到另外一个网段的IP地址)

(means if the address of the 172.19 section is detected, jump to the IP 172.19.8.1; if not, jump to the IP address of the other segment)

route -p add 0.0.0.0 mask 0.0.0.0 192.168.0.1 metric 20

(route -p与route的区别:route -p 是永久写入,会写入到注册表;而route则是临时写入,重启电脑后就消失了)

(Route-p difference from roote: it's permanent, it's written into the registration form, it's temporary, and it disappears when the computer is restarted)

这样就可以同时连接两个不同网段的IP地址了。

So you can connect two different segments of the network to an IP address at the same time.

删除IP(多余的) ----尝试倒得执行一次 添加

Delete IP (redundant) - Try to execute one more time

网上邻居

Neighbors online.

属性

Properties

本地连接-属性

Local Connections - Properties

internet协议(TCP/IP)-属性

Internet Protocol (TCP/IP) - Properties

高级

Advanced

IP地址保留你需要的,其他删掉就可以了。

The IP address keeps what you need, and the other one can be deleted.

 

linux上实现:

Achieved on linux:

 

1.查看IP信息

1. View IP information

ip addr

类似eth0则代表网卡

It's like eth0 for the net card.

 inet 172.16.222.113/24则表示IP地址

& nbsp;inet 172.16.222.113/24 for IP address

2.若配置单个IP

2. If a single IP is configured

vi /etc/sysconfig/network-scripts/ifcfg-eth1

eth1代表的是配置哪个网卡

Eth1 stands for which web card to set up.

DEVICE=eth1
IPADDR=要配置的IP地址
NETMASK=255.255.255.0
GATEWAY=要配置的网关地址
ONBOOT=yes
NAME=eth1
DNS1=222.5.5.5

DEVICE=eth1
IPADDR=IP address to configure
NETMASK=255.255.255.0
GATEWAY= gateway address to configure
ONBOT=yes
NAME=eth1>DNS1=222.5.5

:wq保存配置

Cannot initialise Evolution's mail component.

service network restart 重启网络服务使配置生效

service network restart to enable configuration

3.若配置多个IP

3. If more than one IP is configured

vi /etc/sysconfig/network-scripts/ifcfg-eth1:0

eth1代表的是配置哪个网卡 : 后面代表新配的第0个IP,冒号后取值范围0-255

Eth1 represents the configuration of the net card: the following is the new zero IP, coded range 0-255.

DEVICE=eth1
IPADDR=要配置的IP地址
NETMASK=255.255.255.0
GATEWAY=要配置的网关地址
ONBOOT=yes
NAME=eth1
DNS1=222.5.5.5

DEVICE=eth1
IPADDR=IP address to configure
NETMASK=255.255.255.0
GATEWAY= gateway address to configure
ONBOT=yes
NAME=eth1>DNS1=222.5.5

:wq保存配置

Cannot initialise Evolution's mail component.

service network restart 重启网络服务使配置生效

service network restart to enable configuration

美化布局示例

欧易(OKX)最新版本

【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   全球官网 大陆官网

币安(Binance)最新版本

币安交易所app【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址

火币HTX最新版本

火币老牌交易所【遇到注册下载问题请加文章最下面的客服微信】永久享受返佣20%手续费!

APP下载   官网地址
文字格式和图片示例

注册有任何问题请添加 微信:MVIP619 拉你进入群

弹窗与图片大小一致 文章转载注明

分享:

扫一扫在手机阅读、分享本文

发表评论
平台列表
美化布局示例

欧易(OKX)

  全球官网 大陆官网

币安(Binance)

  官网

火币(HTX)

  官网

Gate.io

  官网

Bitget

  官网

deepcoin

  官网
热门文章
  • 虚拟币GOpay钱包app下载

    虚拟币GOpay钱包app下载
    虚拟币GOpay钱包app下载版能为用户第一时间带来行业内最新的资讯,虚拟币GOpay钱包app下载版中采用了多种先进的隐私保护算法,提供多元完善的认证机制确保所有用户的交易安全性,除了自身的进步和发展之外,还需要承担更多的行业责任,比如推动行业的健康发展、为行业培养更多的优秀人才,以及为行业创造更多可能等。In addition to its own progress and development, the virtual currency GO...
  • 2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别 进入阅读模式

    2022江苏三支一扶行测备考经济知识:货币、人民币和数字人民币的联系和区别                进入阅读模式
    宿迁三支一扶QQ交流群:427100650 丨 微信公众号:宿迁中公教育 丨 在线咨询 关于货币的定义有很多,但是我们在考试中主要参照的是马克思主义货币学说。马克思货币学说是马克思关于货币的起源和本质、货币职能及其...
  • 区块链存证-核验操作指南

    区块链存证-核验操作指南
    第一步:登录后台-表单数据汇总,点击查看证书;Step one: login backstage - form data summary, click on the certificate; 第二步:保存存证证书,下载【存证源文件】,复制【存证哈希】,;Step 2: save the certificate of record, download the [source file], copy the [Hashi file], 第三步:登录蚂蚁区块链存证核验中心...
  • 比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?

    比特币凉了 数字货币火了!华力创通狂拉17% 概念股爆炸!怎么买?
    你还在等什么?现在升级新浪财经Level-2一年只要88元!˂a href="https://finance.sina.com.cn/app/jumptosfl2.shtml" target="_blank" What are you waiting for? 逃不出我掌心!尾盘掘金助你...
  • 【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享

    【2014.5.6】海美迪 HD900系列 RTD1186 變磚救星 Web3.0 固件分享
    您需要 登錄 才可以下載或查看,沒有賬號?註冊 You need record to download or view without account? ˂a href=https://www.hd.club.tw/member.php?mod=register'title= "Registration account" x 本文章最後由 racha33 於 2014-5-6 23:29 編輯 固件分享品牌:海美迪芯片方案:RTD1186固件简介:基於 1...
标签列表