• 1 
瀏覽模式: 普通 | 列表

DRBL用戶端是使用PXELINUX來控制的,PXE開機的設定檔放在/tftpboot/nbi_img/pxelinux.cfg/目錄下,用戶端取得的設定檔會有優先順序
順序是:

(1) UUID (2) MAC address (3) IP address (4) default

實體順序是:

/tftpboot/nbi_img/pxelinux.cfg/b8945908-d6a6-41a9-611d-74a6ab80b83d
/tftpboot/nbi_img/pxelinux.cfg/01-88-99-aa-bb-cc-dd
/tftpboot/nbi_img/pxelinux.cfg/C0A86401
/tftpboot/nbi_img/pxelinux.cfg/C0A8640
/tftpboot/nbi_img/pxelinux.cfg/C0A864
/tftpboot/nbi_img/pxelinux.cfg/C0A86
/tftpboot/nbi_img/pxelinux.cfg/C0A8
/tftpboot/nbi_img/pxelinux.cfg/C0A
/tftpboot/nbi_img/pxelinux.cfg/C0
/tftpboot/nbi_img/pxelinux.cfg/C
/tftpboot/nbi_img/pxelinux.cfg/default
我在想比較好用到的應該是 (2) (3) (4) 吧

01-88-99-aa-bb-cc-dd 是 01 加上 mac address,: 取代為 - 符號

[閱讀全文]

標籤: drbl pxe mac ip

Linux 更改網卡卡號


ip link set eth0 down
ip link set eth0 address 11:22:33:44:55:66
ip link set eth0 up



ifconfig eth0 down
ifconfig eth0 hw ether 11:22:33:44:55:66
ifconfig eth0 up

參考
http://alangnet.blogdns.net/index.php?op=printView&articleId=100&blogId=1
http://linux.vbird.org/linux_server/0140networkcommand.php#ip_cmd

使用 netsh 新增修改 IP address

Quote: http://sean.iou.idv.tw/index.php?pl=122&ct1=3

Windows 2K/XP 修改IP,不用開啟網路撥號連線,用Netsh

每次當您要修改一個IP位址時,是不是都要開啟網路和撥號連線,再按網路設備~然後內容內容的一堆視窗...
遇到系統資源低一點的狀況,真的會慢到瘋掉 >_<
其實更改IP,是不需要這麼麻煩的
使用windows 內建的網路工具netsh便可輕鬆解決!
Netsh - Creates a shell for network information
微軟官方有一堆文件,有興趣練習英文閱讀的人可以去看看。
How to Use the NETSH Command to Change from Static IP Address to DHCP in Windows 2000( http://support.microsoft.com/?kbid=257748)
Using Netsh ( http://www.microsoft.com/technet/treeview/default.asp?url=/technet/prodtechnol/
winxppro/proddocs/netsh.asp)
Managing Windows2000 Networking Components with Netsh
( http://www.microsoft.com/technet/community/columns/cableguy/cg1101.mspx)

在這根大家介紹幾個簡單的指令
1.Show IP
1.1Cmd Mode
直接在cmd下面輸入
netsh interface ip show address

[閱讀全文]

標籤: netsh ip

  • 1