วิธีการ
- เปิดไฟล์ /etc/iftab ด้วยคำสั่ง :
sudo vim /etc/iftabจะมีข้อความในไฟล์เป็น eth0 การ์ดเดียวดังนี้ : # This file assigns persistent names to network interfaces.
# See iftab(5) for syntax.eth0 mac 00:13:72:9a:fe:4b arp 1
- เมื่อเปิดไฟล์ /etc/network/interfaces จะมีเฉพาะค่าของ lo และ eth0 ดังนี้ : # This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).# The loopback network interface
auto lo
iface lo inet loopback # The primary network interface
auto eth0
iface eth0 inet dhcp
- และเมื่อใช้คำสั่ง ifconfig -a จะได้ผลดังนี้ :
- ให้ทำการเพิ่มการ์ด LAN การ์ดใหม่เข้าไป และเมื่อเปิดเครื่องขึ้นใหม่ ให้ลองเปิดไฟล์ /etc/iftab ดู ก็จะยังไม่เห็นค่าของการ์ด LAN การ์ดใหม่เพิ่มเข้ามา แต่ถ้าใช้คำสั่ง ifconfig -a ดูจะเห็นว่ามีการ์ด LAN เพิ่มใหม่ดังนี้ : โดยการ์ด LAN ที่เพิ่มขึ้นมาใหม่อาจจะเป็น eth1 หรือ eth2 ขึ้นอยู่กับว่าเราเสียบที่ slot ไหนของเครื่อง
- ให้ทำการเพิ่มค่าของการ์ด LAN ใหม่เข้าไปในไฟล์ /etc/iftab โดย mac address ให้เอามาจากคำสั่ง ifconfig -a โดยควรมีค่าเป็นดังนี้ : eth0 mac 00:13:72:9a:fe:4b arp 1
eth1 mac 00:80:48:4E:15:C8 arp 1จากการทดลองของผู้เขียน ข้อนี้ไม่ต้องทำก็ได้ แต่ที่ถูกต้องควรจำทำครับ
- ให้ทำการเพิ่มข้อความต่อไปนี้เข้าไปในไฟล์ /etc/network/interfaces
auto eth1
iface eth1 inet static
address 10.1.1.1
netmask 255.255.255.0
network 10.1.1.0
broadcast 10.1.1.255 - จากนั้นให้ใช้คำสั่ง sudo /etc/init.d/networking restart
- และเมื่อใช้คำสั่ง ifconfig เพื่อดูค่า interface จะเห็นค่า ip address ของการ์ด LAN ใหม่ที่ถูกต้องและมีสถานะเป็น UP ดังรูป
สำหรับท่านที่ต้องการที่จะสร้างหน้า Web แต่มีชื่อเรียกเข้าไปหลายๆ ชื่อหรือที่เรียกว่า Virtual host นั้น
ใน Apache ของ ubuntu สามารถแก้ไขได้ที่
/etc/Apache2/sites-enables/000-default
จากนั้น ก็ทำการเพิ่มข้อความเข้าไปเช่น
<VirtualHost *>
ServerAdmin xyz@crop.opp
DocumentRoot /var/www/it
ServerName it.ctext.or.th
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
แล้วบันทึก จากนั้นก็ Restart อีกที
/etc/init.d/apache2 restart
ก็เรียบร้อยครับ
คัดลอกมาจาก: http://mrkohkoh.exteen.com/category/UBUNTU
ใน Apache ของ ubuntu สามารถแก้ไขได้ที่
/etc/Apache2/sites-enables/000-default
จากนั้น ก็ทำการเพิ่มข้อความเข้าไปเช่น
<VirtualHost *>
ServerAdmin xyz@crop.opp
DocumentRoot /var/www/it
ServerName it.ctext.or.th
Options FollowSymLinks
AllowOverride None
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
แล้วบันทึก จากนั้นก็ Restart อีกที
/etc/init.d/apache2 restart
ก็เรียบร้อยครับ
คัดลอกมาจาก: http://mrkohkoh.exteen.com/category/UBUNTU
0 ความคิดเห็น:
แสดงความคิดเห็น