This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Flush all rules | |
ipfw -q -f flush | |
# Destroy ACLs | |
ipfw -q table all destroy | |
# Create SSH access ACL | |
ipfw -q table SSHAccess create type addr | |
ipfw -q table SSHAccess add 192.168.0.1 # SysAdm workstation |