![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| BSD BSD, sometimes called Berkeley Unix, is a Unix operating system developed by the Computer Systems Research Group of the UC Berkeley. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Linux MPX Multi-touch Table May Become Free DIY Microsoft Surface ... - Gizmodo.com | iBot | UNIX and Linux RSS News | 0 | 07-16-2007 11:10 AM |
| create new table/field | Gr4wk | Shell Programming and Scripting | 2 | 05-03-2006 06:07 PM |
| table | howeezy | High Level Programming | 1 | 09-23-2005 11:27 AM |
| MySql: create table error | perleo | Shell Programming and Scripting | 3 | 04-16-2003 02:23 PM |
| How do I create desktop icons for the shell programs I create??? | TRUEST | UNIX Desktop for Dummies Questions & Answers | 7 | 05-15-2002 08:40 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Now, I had installed free bsd at my office. Unfortunitely, Email server have been using Local PoP3 and SMTP to our ISP with outlook. but my unix firewall sever ( free bsd ) didn't allow these port ( 110 & 25 ).
How can i create the IP table to pass at server. If u have any experience about obvious case, Pls kindly guide to me. |
| Forum Sponsor | ||
|
|
|
|||
|
nmap will do the job but telnet shuld be sufficient to test whether ports are open. try netstat -an | grep 110 and grep 25 to see if anything has bound to these ports at all.
On freebsd there is no iptables. Firewalls on freebsd are either ipf or pf. as far as I recall ipf -ihn will show you active ruleset on incoming direction (i) with hits per rule (h) and number next to each rule (n). ipf -ohn will show you similar but in output direction. You may find that strange at the first glance but in ipf last match wins. That is decision to dropp/pass a packet is done based on last match, not first match in a rulest - opposite to linux/cisco behaviour. It's just a different approach you'll have to get used to, it's not wrong at all. Tell us what you see when doing netstat and telnet to mentioned ports, then we'll guide you through the rest. It won't be difficult. ipf's syntax is so simple and straighforward that I falled in love since I saw it. PF is very similar (in syntax). regards. |