ubuntu批量添加IP

ubuntu 批量添加ip脚本

# !/bin/bash

for ((i=0;i<=3;i=i+1))

do

echo "auto eth0:$i">>/etc/network/interfaces

echo "iface eth0:$i inet static">>/etc/network/interfaces

let j=$i+179

echo "address 45.41.89.$j">>/etc/network/interfaces

echo "netmask 255.255.255.248">>/etc/network/interfaces

echo "gateway 45.41.89.177">>/etc/network/interfaces

echo "  ">>/etc/network/interfaces

done

# end

auto eth0:1

iface eth0:1 inet static

address 104.237.51.90

netmask 255.255.255.248

gateway 104.237.51.89

auto eth0:2

iface eth0:2 inet static

address 104.237.51.91

netmask 255.255.255.248

gateway 104.237.51.89

auto eth0:3

iface eth0:3 inet static

address 104.237.51.92

netmask 255.255.255.248

gateway 104.237.51.89

auto eth0:4

iface eth0:4 inet static

address 104.237.51.93

netmask 255.255.255.248

gateway 104.237.51.89

上为一个脚本程序(ip较多的时候)

下为ip数量较少

时间: 2024-11-02 23:51:57

ubuntu批量添加IP的相关文章

centos添加批量添加ip提示无效参数

Bringing up interface eth0:  SIOCSIFNETMASK: Invalid argument SIOCSIFNETMASK: Invalid argument SIOCSIFNETMASK: Invalid argument SIOCSIFNETMASK: Invalid argument 翻译: 造就网卡eth0:SIOCSIFNETMASK:无效的参数 SIOCSIFNETMASK:无效的参数 SIOCSIFNETMASK:无效的参数 SIOCSIFNETMAS

ubuntu系统添加ip

默认情况下,我们买服务器都会给我们5个以上的ip,一般主机都对应一个主ip,如果想把4个剩余ip加到主机上,需要手动配置,具体操作是 打开vim /etc/network/interfaces 默认是 auto loiface lo inet loopbackauto eth0iface eth0 inet static address 8.8.8.8(根据自己的ip) netmask 255.255.255.248 gateway 8.8.8.8(根据自己的getway) 要再添加就加上 au

批量添加ip出错误之二

Determining if ip address 43.241.255.196 is already in use for device eth1... Determining if ip address 43.241.255.197 is already in use for device eth1... Determining if ip address 43.241.255.198 is already in use for device eth1... Determining if i

centos 单网卡批量添加不同IP段

单网卡批量添加不同IP段70.39.112.194 添加IP:70.39.112.195-222/70.39.83.226-254 vi /etc/sysconfig/network-scripts/ifcfg-eth0-range0DEVICE=eth0ONBOOT=yesBOOTPROTO=staticIPADDR_START=70.39.112.195IPADDR_END=70.39.112.222CLONENUM_START=0GATEWAY=70.39.112.193NETMASK=2

Windows批量添加和删除IP

随着天气变冷了,好多小伙伴都开始变懒了,都想用最快的方式完成任务 下面给大家介绍一下Windows批量添加和删除IP的办法 (1)批量添加IP 直接在CMD下边运行下边命令. for /l %i in (2,1,254) do netsh interface ip add address "本地连接" 192.168.1.%i 255.255.255.0for /l %i in (2,1,62) do netsh interface ip add address "本地连接&

批量创建IP方法

以下教程,将告诉大家如何在Windows系统中通过命令行,批量添加IP.目标,在本机的的网卡名称为“本地连接”的网卡中,批量添加192.168.1段的ip地址,起开始IP为10,每次增加1,知道22为止,即括号的三个参数.批量增加绑定到网卡的IP方法一直接在cmd命令行下执行如下命令:FOR /L %I IN (10,1,22) DO netsh interface ip add address "本地连接" 192.168.1.%I 255.255.255.0方法二新建一个bat文件

在CentOS(Linux)中添加单个IP和批量添加多个IP地方法

一.添加单个IP地址: 在/etc/sysconfig/network- s/中新建文件ifcfg-eth0:*,*为数字序号,多个IP则依次增大以0为例,建立文件ifcfg-eth0:0 cd /etc/sysconfig/network- s/vi ifcfg-eth0:0 输入内容格式: DEVICE=eth0:0TYPE=EthernetONBOOT=yesBOOTPROTO=staticIPADDR=要添加绑定的IP地址NETMASK=子网掩码GATEWAY=网关地址 二.批量添加多个

Ubuntu配置静态IP

Ubuntu配置静态IP 静态IP配置 Ubuntu 的网络配置信息放在 /etc/network/interfaces 中,如果配置动态获取ip,则在上述文件中加入以下内容:使用如下命令打开网络配置信息文件: sudo gedit /etc/network/interfaces 编辑文件(注意检察你的getway是否正确.): auto eth0iface eth0 inet staticaddress 192.168.8.119netmask 255.255.255.0gateway 192

Ubuntu 设置固定ip,NetWork-Manager不能保存固定ip解决办法

Ubuntu 设置固定ip,NetWork-Manager不能保存固定ip解决办法 如题: 使用windows时间过长,形成审美疲劳啊,但是郁闷的是windows个性化能力也太弱了点吧 而ubuntu真是完美的替代方案.. 由于个人笔记本无线网卡出现问题,学校使用有线又必须固定ip,但是使用图形界面(Network-manager)设置固定ip(manual)的时候,底下的save按钮为灰色,倒置一直不能设置固定ip,但是百度或者google设置固定ip,几乎100%的都是要求从命令行修改/et