| أمر |
الوصف |
|
# iptables -t filter -L |
show all chains of filtering table [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t nat -L |
show all chains of nat table [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t filter -F |
clear all rules from filtering table [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t nat -F |
حذف كل الحقول من جدول "nat" |
|
# iptables -t filter -X |
حذف كل السلاسل التي تم تكوينها بواسطة مستخدم |
|
# iptables -t filter -A INPUT -p tcp --dport telnet -j ACCEPT |
allow telnet connections to input [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t filter -A OUTPUT -p tcp --dport http -j DROP |
block HTTP connections to output [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t filter -A FORWARD -p tcp --dport pop3 -j ACCEPT |
allow POP3 connections to forward chain [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t filter -A INPUT -j LOG --log-prefix |
Logging on input chain [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE |
configure a PAT (Port Address Traslation) on eth0 masking outbound packets [english]
الوصف غير متاح لهذه اللغة[Arabic?] |
|
# iptables -t nat -A PREROUTING -d 192.168.0.1 -p tcp -m tcp --dport 22 -j DNAT --to-destination 10.0.0.2:22 |
redirect packets addressed to a host to another host [english]
الوصف غير متاح لهذه اللغة[Arabic?] |