Dummy Interface: Difference between revisions
From MediaWiki
Jump to navigationJump to search
(New page: Reference info: '''[http://www.faqs.org/docs/linux_network/x-087-2-iface.interface.html Linux Network Administrators Guide]''') |
No edit summary |
||
Line 1: | Line 1: | ||
Reference | Reference Info 1: '''[http://www.faqs.org/docs/linux_network/x-087-2-iface.interface.html Linux Network Administrators Guide]''' | ||
Installing the Linux dummy-network interface | |||
If your Linux system does not have network communication hardware installed, or if it uses the dynamic host configuration protocol (DHCP) for network IP address configuration, you can install Adaptive Server components using these procedures. | |||
StepsInstalling a dummy-network interface | |||
1. Add /sbin to your $PATH environment setting: | |||
# PATH=$PATH:/sbin | |||
2. Add an IP address and host name to your /etc/hosts table. Sybase recommends that you use an address in a free Internet address band. | |||
For example, an Internet address of 10.0.0.1 would result in: | |||
echo 10.0.0.1 $HOSTNAME >> /etc/hosts | |||
NoteSybase recommends that you do not use “localhost” as an alternative. | |||
3. Preload the dummy network driver on the machine. | |||
# modprobe dummy | |||
If this command is successful, you do not receive any messages from the server. | |||
4. Bind the dummy established network interface to the $HOSTNAME configured IP address. | |||
# ifconfig dummy0 $HOSTNAME | |||
5. For a DHCP environment, add a route other than “default” to the established virtual network setup. | |||
# route add $HOSTNAME dummy0 | |||
6. Check the network binding: | |||
This command gives below listed output: | |||
# ifconfig dummy0 | |||
dummy0 Link encap:Ethernet HWaddr 00:00:00:00:00:00 | |||
inet addr:10.0.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 | |||
UP BROADCAST RUNNING NOARP MTU:1500 Metric:1 | |||
RX packets:0 errors:0 dropped:0 overruns:0 frame:0 | |||
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 | |||
collisions:0 txqueuelen:0 | |||
7. Check the route binding: | |||
This command shows the routing as it is set up. | |||
# route | |||
Kernel IP routing table: | |||
Destination Gateway Genmask Flags Metric Ref Use Iface | |||
HOSTNAME * 255.255.255.255 UH 0 0 0 dummy0 | |||
10.0.0.0 * 255.0.0.0 U 0 0 0 dummy0 | |||
127.0.0.0 * 255.0.0.0 U 0 0 0 lo |
Revision as of 09:25, 28 April 2009
Reference Info 1: Linux Network Administrators Guide
Installing the Linux dummy-network interface
If your Linux system does not have network communication hardware installed, or if it uses the dynamic host configuration protocol (DHCP) for network IP address configuration, you can install Adaptive Server components using these procedures.
StepsInstalling a dummy-network interface
1. Add /sbin to your $PATH environment setting:
# PATH=$PATH:/sbin
2. Add an IP address and host name to your /etc/hosts table. Sybase recommends that you use an address in a free Internet address band.
For example, an Internet address of 10.0.0.1 would result in:
echo 10.0.0.1 $HOSTNAME >> /etc/hosts
NoteSybase recommends that you do not use “localhost” as an alternative.
3. Preload the dummy network driver on the machine.
# modprobe dummy
If this command is successful, you do not receive any messages from the server.
4. Bind the dummy established network interface to the $HOSTNAME configured IP address.
# ifconfig dummy0 $HOSTNAME
5. For a DHCP environment, add a route other than “default” to the established virtual network setup.
# route add $HOSTNAME dummy0
6. Check the network binding:
This command gives below listed output:
# ifconfig dummy0 dummy0 Link encap:Ethernet HWaddr 00:00:00:00:00:00 inet addr:10.0.0.1 Bcast:10.255.255.255 Mask:255.0.0.0 UP BROADCAST RUNNING NOARP MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0
7. Check the route binding:
This command shows the routing as it is set up.
# route Kernel IP routing table: Destination Gateway Genmask Flags Metric Ref Use Iface HOSTNAME * 255.255.255.255 UH 0 0 0 dummy0 10.0.0.0 * 255.0.0.0 U 0 0 0 dummy0 127.0.0.0 * 255.0.0.0 U 0 0 0 lo