iptables Flashcards

1
Q

Список правил c номерами

A

iptables -L –line-numbers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Удалить правило по цепочке и номеру

A

iptables -D INPUT 3

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Удалить все правила

A

iptables -F

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Политика по умолчанию на разрешение всего

A

iptables -p INPUT ACCEPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Политика по умолчанию на запрещение всего

A

iptables –p INPUT DROP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

чтобы если извне соединение создалось, то по умолчанию оно будет доступно изнутри

A

iptables -A INPUT -m conntrack –ctstate ESTABLISHED,RELATED -j ACCEPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

разрешить удаленный доступ по SSH (тут у меня порт другой)

A

iptables -A INPUT -p tcp –dport=2459 -j ACCEPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

разрешить определенному ip ходить на определенный порт

A

iptables -A INPUT -p tcp -s 95.156.120.114 –dport=2459 -j ACCEPT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Запретить доступ определенному мак-адресу

A

iptables -A INPUT -m mac –mac-source 9A:62:4E:FF:AF:56 -j DROP

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

сохранить правила в файл iptables.rules

A

iptables-save > /etc/iptables-conf/iptables.rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

восстановить правила из файла iptables.rules

A

iptables-restore /etc/iptables-conf/iptables.rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly