Search results

  1. W

    Help with natd & ipfw

    Here you go... #!/bin/sh . /etc/rc.common ConsoleMessage "Configuring Network Bridge" IPFW=/sbin/ipfw # Enabling IP Forwarding sysctl -w net.inet.ip.forwarding=1 # Starting NAT natd -interface en0 StartService () { if [ "${FIREWALL:=-YES-}" = "-YES-" ]; then...
  2. W

    Help with natd & ipfw

    Nevermind. Got it working.
  3. W

    Firewall & ipfw

    Take a look at your apache executable, it is owned by root. Once it binds to the socket, it changes to user www. This is why you specify the user in the httpd.conf file. Here's the output from 10.4.11 installation. I don't even use the webserver, so I promise I haven't pulled any tricks. $...
  4. W

    Firewall & ipfw

    Ports < 1000 must be opened by root. Try running your application as root and see if it can bind to port 443.
  5. W

    Help with natd & ipfw

    I have two networks in my location. The first is a 100Mbps wired & 802.11g wireless network operating on subnet 192.168.1 with subnet mask 255.255.255.0. The second is a 10Mbps wired & 802.11b wireless network operating on subnet 192.168.2 with subnet mask 255.255.255.0. A MacBook is on...
Back
Top