修改與批量新增ip

2021-10-04 12:19:00 字數 990 閱讀 6398

1.修改ip

ifconfig檢視網絡卡配置

/etc/sysconfig/network-scripts目錄中找網絡卡

vi /etc/sysconfig/network-scripts/ifcfg-ens33修改ip位址

儲存重啟網路服務service network restart

2.新增乙個ip

在/etc/sysconfig/network- s/中新建檔案ifcfg-eth0:*,*為數字序號,多個ip則依次增大

以0為例,建立檔案ifcfg-eth0:0

cd /etc/sysconfig/network- s/
vi ifcfg-eth0:0
輸入內容格式:

device=eth0:0

type=ethernet

onboot=yes

bootproto=static

ipaddr=要新增繫結的ip位址

netmask=子網掩碼

gateway=閘道器位址

儲存重啟網路服務service network restart

vi /etc/sysconfig/network- s/ifcfg-eth0-range0
輸入以下檔案內容格式:

device=eth0

onboot=yes

bootproto=static

ipaddr_start=起始ip位址

ipaddr_end=結束ip位址

clonenum_start=0

gateway=閘道器位址

netmask=子網掩碼

no_aliasrouting=yes

儲存後,執行service network restart重啟網路服務即可!

mybatis批量修改,批量新增

mybatis批量修改 批量新增sql語句 1 單個新增 insert into t user user name,mobile values 2 新增並返回主鍵 keyproperty的屬性是要返回的主鍵欄位的名稱 insert into t user user name,mobile value...

mybaits批量新增修改

開發中,批量修改資料應該是很常見的功能需求。今晚開發時配置批量修改功能遇到很多坑,浪費了很多時間,特此記錄下來,跟大家分享,今天你看到的坑我都為您鋪平了。批量執行sql語句,無非就是批量修改和批量新增。我用現在使用量最多的框架mybatis寫乙個修改功能給大家做個demo看。其他的自己舉一反三,我不...

mybatis 批量新增修改

1 dao層 int addstoragebatch liststoragelist int updatestoragebatch param storagelist liststoragelist 2 xml檔案 usegeneratedkeys true keyproperty id inser...