这个是从其它网站复制的,打开Mac OS X 10.4, 10.5, 10.6内置的防火墙。
#!/bin/sh # enable_firewall.sh # # Patrick Gallagher # http://macadmincorner.com # Stealth Mode - Set to 0 to disable # Stealth mode prevents machine from responding to ping requestst # Be aware that this would prevent tools such as ARD from discovering # the machine, though bonjour on the same subnet will still work osversionlong=`sw_vers -productVersion` osvers=${osversionlong:3:1} # Check if this is being run by root if [ "$(whoami)" != "root" ] ; then echo "Must be root to run this command." >&2 exit 1 fi # Enable firewall for Tiger if [ $osvers -eq 4 ]; then echo "Setting firewall on a ${osversionlong} machine" /usr/bin/defaults write /Library/Preferences/com.apple.sharing.firewall state -bool YES # UDP, change to 0 to disable /usr/bin/defaults write /Library/Preferences/com.apple.sharing.firewall udpenabled -int 1 # Stealth, change to 0 to disable /usr/bin/defaults write /Library/Preferences/com.apple.sharing.firewall stealthenabled -int 1 /usr/libexec/FirewallTool fi # Enable firewall for Leopard or Snow Leopard if [ $osvers -ge 5 ]; then echo "Setting firewall on a ${osversionlong} machine" # Globalstate - Set to 0 for off, 1 for on, 2 for "Block all incoming access" /usr/bin/defaults write /Library/Preferences/com.apple.alf globalstate -int 1 /usr/bin/defaults write /Library/Preferences/com.apple.alf stealthenabled -int 1 fi
本文提供了一个用于在MacOSX 10.4至10.6上启用防火墙的shell脚本。该脚本通过检测操作系统版本来调整防火墙设置,并支持隐身模式及UDP流量控制。

113

被折叠的 条评论
为什么被折叠?



