IPCop


 
Thread Tools Search this Thread
Special Forums Cybersecurity IPCop
# 1  
Old 06-09-2003
IPCop

I just recently heard about IPCop. I am curious if anyone knows anything about this program/os and if I should attempt to use it. I currently have a cable modem connected straight to my pc with a trial version firewall. But what I want is to setup IPCop on a pc and connect the cable modem to it then connect that pc to a hub/switch and connect my computers to it. Also, I am curious if with this setup I could connect my work laptop to it and then use my work vpn client? A lot of questions, I know but I haven't had the time to read up on this yet and I need to set it up tomorrow or buy a router, if I set it up this way I don't have to buy anything because I have all the listed items. Thanks for any and all help. Oh, and if I have put this in the wrong thread please move it or let me know thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
TERM(1) 						      General Commands Manual							   TERM(1)

NAME
term - turn PC into a dumb terminal [IBM] SYNOPSIS
term [baudrate] [parity] [bits_per_character] [-dial_string] [device] EXAMPLES
term 2400 # Talk to modem at 2400 baud term 1200 7 even # 1200 baud, 7 bits/char, even parity term 8 9600 /dev/tty01 # 9600 baud, 8 bits/char, no parity, use tty01 term -atdt12345 /dev/tty01 # Start with a command to dial out DESCRIPTION
Term allows MINIX to talk to a terminal or modem over RS232 port 1. The program first sets the baudrate, parity and character length, and then forks. The parent sits in a loop copying from stdin (usually the console's keyboard), to the terminal or modem (/dev/tty00). The child sits in a loop copying from the terminal or modem (/dev/tty00) to standard output. Thus when RS232 port 1 is connected to a modem, every keystroke typed on the keyboard is sent to the modem, and every character arriving from the modem is displayed. Standard input and output may be redirected, to provide a primitive file transfer program, with no checking. Any argument that starts with a minus ('-') is sent out to the modem, usually to dial out. Term accepts several commands that are formed by typing the escape character, CTRL-], and a letter. Type CTRL-]? to see a list of commands. The subshell command is very important, it allows you to type in a ZMODEM command to transfer data. Do not quit term to do this, or your modem line will be reset! Term keeps the modem line open on file descriptor 9 while running the subshell, so you can type <&9 >&9 at the end of your ZMODEM command to connect it to the modem. Important note: to use term, it is essential that /etc/ttytab is configured so that there is no shell hanging on /dev/tty01. If there is, both the shell and term will try to read from /dev/tty01, and nothing will work. SEE ALSO
rz(1), sz(1). TERM(1)