iptables: add page

waldyrious/alt-syntax
slash3b 2016-03-06 17:50:33 +02:00
parent 5d5dea076a
commit 0fb8ae2285
1 changed files with 27 additions and 0 deletions

27
pages/linux/iptables.md Normal file
View File

@ -0,0 +1,27 @@
# iptables
> Program that allows to configure tables, chains and rules provided by the Linux kernel firewall.
- See chains and rules for specific table:
`sudo iptables -t {{table_name}} -vnL`
- Set chain policy rule:
`sudo iptables -p {{chain}} {{rule}}`
- Append rule to chain policy for IP:
`sudo iptables -A {{chain}} -s {{ip}} -j {{rule}}`
- Append rule to chain policy for IP considering protocol and port:
`sudo iptables -A {{chain}} -s {{ip}} -p {{protocol}} --dport {{port}} -j {{rule}}`
- Delete chain rule:
`sudo iptables -D {{chain}} {{rule_line_number}}`
- Savin iptables configuration:
`sudo iptables-save > {{path_to_iptables_file}}`