how do you configure linux system as a router?
Answers were Sorted based on User's Feedback
Answer / anoop
above anwser also write,
but must me know this,
vi /etc/sysctl.conf
# Controls IP packet forwarding
net.ipv4.ip_forward = 1
save &
sysctl -p
Is This Answer Correct ? | 39 Yes | 0 No |
Answer / thilak.r.s
Give the following command
echo 1 > /proc/sys/net/ipv4/ip_forward
Is This Answer Correct ? | 15 Yes | 5 No |
Answer / bhupendra singh jhala
follow following command
1.) vi /etc/sysctl.conf
# Controls IP packet forwarding
net.ipv4.ip_forward = 1
save (:wq!)
You should have a Two physical LAN card, if You have't two
Lan cat. You have to creat virtual Lan card
2.) cp -arvf /etc/sysconfig/network-scripts/ifcfg-
eth0 /etc/sysconfig/network-scripts/ifcfg-eth0:1
3.) Set a diffrent Class IP in virtual Lan card
4.) start network service
/etc/init.d/network restart
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / anindian
1st answer is correct till you boot your Linux machine, once
rebooted, its gone coz the /proc is a fs that is resident on
memory, thus if you want to forward your packets permanently
then you have to alter the net.ipv4.ip_forward parameter to
reflect the changes each time machine is booted. # sysctl -p
makes it effective without reboot.
Is This Answer Correct ? | 4 Yes | 2 No |
Answer / mahendra yadav
iptables -I FORWARD -i eth0 -o eth1 -j ACCEPT
iptables -I FORWARD -i eth1 -o eth0 -j ACCEPT
vim /etc/sysctl.conf
net.ipv4.ip_forward = 1
:wq
/etc/init.d/iptables save
Is This Answer Correct ? | 3 Yes | 1 No |
What does c mean in linux?
My linux machine is crashed due to root file system, I need not to bother about the root file system, but i need to take care of /etc, /usr, like that.,, can i recover these file systems?
What is linux load average?
What signal is ctrl c?
How did you do the Health check in Linux?
How do you check which file consuming more space in linux?
Explain the free command.
Write a command that will look for files with an extension "c", and has the occurrence of the string "apple" in it.
1. Why "d" is postfix in almost every service name of Linux like httpd, dhcpd? 2. how to restrict su & ssh services for some users? 3. how can we configure a default gateway for 10 n/w cards in a server?
How can I only see the last 5 lines of a file?
List all the files beginning with A
What is the Difference between 'su' and 'su-' ?