pf example:
pass in on $ext_if inet proto tcp from any to ($ext_if) \
port $tcp_services flags S/SA keep state
pass in on $ext_if inet proto tcp from any to $comp3 port 80 \
flags S/SA synproxy state
iptables example:
iptables -A INPUT -i $ext_if -p tcp --dport $tcp_services --syn -j ACCEPT
iptables -A FORWARD -i $ext_if -p tcp -d $comp3 --dport 80 --syn -j ACCEPT
Personally I find the pf format much easier to read/remember/use/debug.
Read into it you will find out it is pretty neat.
% df -h /usr/share/warez 104G 91G 4.1G 96% /warez
Filesystem Size Used Avail Capacity Mounted on
shows me how much free space on disks
then just mv the files there
mv Some*2E04* "E:\Tv Shows\Some TV Show\Season 2\"
First argument wildcards, second argument tab completion.
pf example: pass in on $ext_if inet proto tcp from any to ($ext_if) \ port $tcp_services flags S/SA keep state pass in on $ext_if inet proto tcp from any to $comp3 port 80 \ flags S/SA synproxy state iptables example: iptables -A INPUT -i $ext_if -p tcp --dport $tcp_services --syn -j ACCEPT iptables -A FORWARD -i $ext_if -p tcp -d $comp3 --dport 80 --syn -j ACCEPT Personally I find the pf format much easier to read/remember/use/debug. Read into it you will find out it is pretty neat.
"Unix is simple. It just takes a genius to understand its simplicity." â" Dennis Ritchie