temp-exit.sh
FrankRock
Source i (link to git-repo or to original if based on someone elses unmodified work):
More Nautilus Scripts from FrankRock:
Other Nautilus Scripts:
© 2025 store.kde.org - The official KDE Store
All rights reserved. All trademarks are copyright by their respective owners. All contributors are responsible for their uploads.
Ratings & Comments
2 Comments
http://yorik.uncreated.net/linuxstuff.html find: Simple firewall #!/bin/sh # Cleans the iptables iptables -F # Enables internet connection sharing modprobe iptable_nat iptables -t nat -A POSTROUTING -o ppp0 -j MASQUERADE echo 1 > /proc/sys/net/ipv4/ip_forward # Opens some ports (22=SSH, 1080=Socks) iptables -A INPUT -p tcp --destination-port 22 -j ACCEPT iptables -A INPUT -p tcp --destination-port 1080 -j ACCEPT # Opens local network iptables -A INPUT -p tcp --syn -s 192.168.0.0/255.255.255.0 -j ACCEPT # Closes everything else iptables -A INPUT -p tcp --syn -j DROP
english please