fix ip ให้กับ linux ubuntu 15.10 ขั้นตอนวิธีทำ
fix ip ให้กับ linux ubuntu นั้นจะทำโดยเข้าไปแก้ไขไฟล์ /etc/network/interfaces โดยในที่นี้ใช้โปรแกรม nano เข้าทำการแก้ไข
เข้าไปแก้ไขไฟล์ /etc/network/interfaces โดยพิมพ์คำสั่งดังนี้
ตรงส่วนของ The primary network interface ของเดิมเป็นแบบ dhcp อยู่
auto eth0
iface eth0 inet dhcp
ทำการแก้ไขเป็นในรูปแบบ
# The primary network interface
auto eth0
iface eth0 inet static
address xxx.xxx.xxx.xxx(ใส่ค่า fix IP)
netmask xxx.xxx.xxx.xxx(ใส่ค่า subnet)
gateway xxx.xxx.xxx.xxx(ใส่ค่า gateway)
dns-nameservers xxx.xxx.xxx.xxx(ใส่ค่า dns server)
ตัวอย่าง
auto eth0
iface eth0 inet static
address 192.168.1.200
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 8.8.8.8 8.8.4.4
ออกจากการแก้ไขไฟล์โปรแกรม nano กดปุ่ม Ctrl+x ตอบ y แล้ว Enter เพื่อบันทึกค่า
สุดท้ายทำการ restart network ด้วยคำสั่ง
เสร็จเรียร้อยครับ
เพิ่มเติม
ถ้า ubuntu version ต่ำกว่า 14.04 ให้แก้ไขไฟล์ /etc/resolv.conf ด้วย
nameserver xxx.xxx.xxx.xxx(ใส่ค่า IP dns server สำรอง )
ตัวอย่าง
nameserver 8.8.4.4
ออกจากการแก้ไขไฟล์ของโปรแกรม nano กดปุ่ม Ctrl+x ตอบ y แล้ว Enter เพื่อบันทึกค่า
restart network