Announcement
Collapse
No announcement yet.
IP Cop vs Smoothwall
Collapse
X
-
If you are happy for them all to be able to see each other, could you not combine them - have IPCOP/Smoothwall do DHCP for both?Originally posted by KooldinoWell, at this point I'm open to anything that I can easily set up on this PC to make it route between the 192 and the 172 networks. Anyone?FT.
Comment
-
-
OMG, I have the answer!
Now to decide which flavor of Linux I'm going to set up on it (as opposed to temporarily running knoppix). Looking for something that's easy to configure NICs and such on, and something simple and lightweight.
Comment
-
By default, the system won't forward packets from one ethernet segment to the other - this just turned on that option.Originally posted by Kooldino(HOcp)With that said, can you explain how exactly that worked?
Nope. /proc is a system control/status area. (I don't remember what "proc" is short for).Also, since it's in the /proc folder, I assume it's a daemon or something?
Actually, /proc/sys/ is where "run-time tunables" are - ie, things that can be changed on the fly. A file in /proc/sys is basically an ASCII interface to some internal kernel variable.
Sort of. The /proc/sys interface takes an ASCII input, and converts it to a numeric value for the kernel. In this case, the variable that controls IP forwarding takes a 1 or a 0. 'echo' is just the Unix/Linux command to take something from the command line, and copy it to a file (or device). It's usually used to print messages on the console (its default output file is the console) - like "echo Press any key to continue".I'm also guessing the "echo 1 >" is like saying "output a 'true' or 'on' as an input to [ip_forward in this case]"?
Thanks again.
You can also find out what the variable is set to by using "cat". The command - "cat /proc/sys/net/ipv4/ip_forward" will print a 1 or a 0, depending on whether it's turned on or not.
- Steve
Comment
-
I could have sworn it was "process"Originally posted by spadnos(I don't remember what "proc" is short for).
Thank you!Actually, /proc/sys/ is where "run-time tunables" are - ie, things that can be changed on the fly. A file in /proc/sys is basically an ASCII interface to some internal kernel variable.
Sort of. The /proc/sys interface takes an ASCII input, and converts it to a numeric value for the kernel. In this case, the variable that controls IP forwarding takes a 1 or a 0. 'echo' is just the Unix/Linux command to take something from the command line, and copy it to a file (or device). It's usually used to print messages on the console (its default output file is the console) - like "echo Press any key to continue".
You can also find out what the variable is set to by using "cat". The command - "cat /proc/sys/net/ipv4/ip_forward" will print a 1 or a 0, depending on whether it's turned on or not.
- Steve
Comment



Comment