各種linux系統配置多IP方法整理

2021-05-26 18:49:10 字數 3144 閱讀 5355

centos下新增ip的方法

一、新增單個ip的方法:

# cd /etc/sysconfig/network-scripts

# cp ifcfg-eth0 ifcfg-eth0:0

# nano ifcfg-eth0:0

複製**

device=eth0:0      #此處新增:0,保持和檔名一致,新增多個ip依次遞增

onboot=yes                      #是否開機啟用

bootproto=static              #靜態ip,如果需要dhcp獲取請輸入dhcp

ipaddr=192.168.1.2            #此處修改為要新增的ip

netmask=255.255.255.0      #子網掩碼根據你的實際情況作修改

複製**

檔案編輯完之後,執行:

/etc/init.d/network reload

複製**

用ifconfig看新的ip是否已經加上。

二、批量新增ip:

在/etc/sysconfig/network-scripts下建立乙個range檔案,也可以用vi等編輯

nano /etc/sysconfig/network-scripts/ifcfg-eth0-range0

複製**

device=eth0

onboot=yes

bootproto=static

ipaddr_start=192.168.2.2     #起始ip

ipaddr_end=192.168.2.254         #結束ip

clonenum_start=1        #表示這段ip網絡卡號從eth0:1開始

netmask=255.255.255.0

複製**

無類域間路由(cidr)的子網掩碼設定參考:

/29 (5 usable) netmask = 255.255.255.248

/28 (13 usable) netmask = 255.255.255.240

/27 (29 usable) netmask = 255.255.255.224

/26 (61 usable) netmask = 255.255.255.192

/25 (125 usable) netmask = 255.255.255.128

/24 (253 usable) netmask = 255.255.255.0

三、為一塊新網絡卡配置ip位址的方法:

如果是為第二塊網絡卡配ip,在/etc/sysconfig/network-scripts目錄下編輯乙個ifcfg-eth1的檔案:

device=eth1

onboot=yes

bootproto=static

ipaddr=192.168.0.18

netmask=255.255.255.0

gateway=192.168.0.1

複製**

修改一下ipaddr,netmask和gateway的引數。

執行:/etc/init.d/network reload

用ifconfig看新的ip是否已經加上。

往freebsd新增ip的方法:

vi /etc/rc.conf

first line is the main ip address + subnet mask

second line and thereafter use the 'alias' in the config line and netmask of

255.255.255.255 and proper broadcast ip.

also, may not be fxp0, might be sis0, rltk0, etc..

ifconfig_fxp0="inet 10.10.10.34 netmask 255.255.255.248"

ifconfig_fxp0_alias0="inet 10.10.10.35 netmask 255.255.255.255"

ifconfig_fxp0_alias1="inet 10.10.10.36 netmask 255.255.255.255"

ifconfig_fxp0_alias2="inet 10.10.10.37 netmask 255.255.255.255"

etc..

also you can run /stand/sysconfig

choose configure, networking, inte***ces, then nic card ( fxp0, rltk, dlink,

rl0, vne, etc...)

debian 伺服器新增ip的方法!

to add secondary ips in debian do:

edit /etc/network/inte***ces and add below

auto eth0:0

iface eth0:0 inet static

address 10.10.10.3

netmask 255.255.255.0

auto eth0:1

iface eth0:1 inet static

address 10.10.10.4

netmask 255.255.255.0

修改 debian linux server 主ip

----------------------------------------------

vi /etc/hostname

vi /etc/hosts

vi /etc/network/inte***ces

and edit the entries below.

auto eth0

iface eth0 inet static

address 67.159.5.28

netmask 255.255.255.0

network 67.159.5.0

broadcast 67.159.5.255

gateway 67.159.5.1

then reboot with 'shutdown -r now' or /etc/init.d/networking restart

Linux系統配置

一般在這個目錄下 etc sysconfig network scripts 通常是 ifcfg eth0 網口1 ifcfg eth1 網口2 dell的是 ifcfg em1 網口1 ifcfg em2 網口2 重啟網絡卡 service network restart 如果ping 不通網域名...

linux系統配置

配置記錄 6 15 2016 10 19 18 am 1.vimrc配置 vimrc沒有,直接建立即可 vim開源配置檔案 這裡新增一些解決中文亂碼和tab鍵設定為空格的方法 解決中文亂碼 set termencoding utf 8 set encoding prc 設定tab為空格,注 ts是t...

Linux系統配置

系統配置,包括軟體安裝,各種問題解決。sudo apt get install libreoffice l10n zh cn當系統卡死時,鍵盤和滑鼠都沒辦法操作了以後。可以嘗試ctrl alt f2 f2 f6 試試,看看能不能進tty介面。能進的話,進入以後htop檢視問題。當上述操作無效時,按住...