tssltd:маркировка_сетевого_трафика_по_ip-адресу
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
tssltd:маркировка_сетевого_трафика_по_ip-адресу [2023/10/09 16:39] – n.ganenkov | tssltd:маркировка_сетевого_трафика_по_ip-адресу [2023/10/12 05:53] (current) – n.ganenkov | ||
---|---|---|---|
Line 7: | Line 7: | ||
<WRAP indent> | <WRAP indent> | ||
- | Для создания правила маркировки сетевого трафика на основе ip-адреса источника (192.168.1.0/ | + | Для создания правила маркировки сетевого трафика на основе ip-адреса источника (192.168.1.0/ |
- | < | + | |
- | + | ||
- | <WRAP center round box 100%> | + | |
- | {{ :tssltd: | + | |
- | __// | + | |
- | </ | + | |
- | Для создания правила маркировки сетевого трафика на основе группы ip-адресов источника (192.168.1.0/ | + | < |
- | < | + | # nft add rule ip filter smark ip saddr 192.168.1.0/ |
+ | # nft list ruleset | ||
+ | table ip filter { | ||
+ | chain input { | ||
+ | type filter hook input priority 30; policy accept; | ||
+ | } | ||
- | <WRAP center round box 100%> | + | chain forward { |
- | {{ :tssltd:2v.png |}}\\ | + | type filter hook forward priority 30; policy accept; |
- | __//Изобр. 11.d.2. Маркировка сетевого трафика | + | } |
- | </WRAP> | + | |
+ | chain output | ||
+ | type filter hook output priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain smark { | ||
+ | type filter hook forward priority filter; policy accept; | ||
+ | ip saddr 192.168.1.0/24 ip dscp set af11 accept | ||
+ | | ||
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting { | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain postrouting { | ||
+ | type nat hook postrouting priority 30; policy accept; | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
+ | |||
+ | Для создания правила маркировки сетевого трафика | ||
+ | < | ||
+ | # nft add rule ip filter smark ip saddr {192.168.1.0/ | ||
+ | # nft list ruleset | ||
+ | table ip filter { | ||
+ | chain input { | ||
+ | type filter hook input priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain forward { | ||
+ | type filter hook forward priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain output { | ||
+ | type filter hook output priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain smark { | ||
+ | type filter hook forward priority filter; policy accept; | ||
+ | ip saddr { 172.16.16.0/ | ||
+ | } | ||
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting { | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain postrouting { | ||
+ | type nat hook postrouting priority 30; policy accept; | ||
+ | } | ||
+ | } | ||
+ | </code> | ||
</ | </ | ||
Line 29: | Line 80: | ||
<WRAP indent> | <WRAP indent> | ||
- | Для создания правила маркировки сетевого трафика на основе ip-адреса назначения (192.168.1.0/ | + | Для создания правила маркировки сетевого трафика на основе ip-адреса назначения (192.168.1.0/ |
- | < | + | < |
+ | # nft list ruleset | ||
+ | table ip filter { | ||
+ | chain input { | ||
+ | type filter hook input priority 30; policy accept; | ||
+ | } | ||
- | <WRAP center round box 100%> | + | chain forward |
- | {{ : | + | type filter hook forward priority 30; policy accept; |
- | __// | + | } |
- | </ | + | |
- | Для создания правила маркировки сетевого трафика на основе группы ip-адресов назначения (192.168.1.0/ | + | chain output { |
+ | type filter hook output priority | ||
+ | } | ||
- | < | + | chain smark { |
+ | type filter hook forward priority | ||
+ | | ||
+ | } | ||
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting { | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | } | ||
- | <WRAP center round box 100%> | + | chain postrouting { |
- | {{ : | + | type nat hook postrouting priority 30; policy accept; |
- | __//Изобр. 11.d.4. Маркировка сетевого трафика | + | |
- | </WRAP> | + | } |
+ | </code> | ||
+ | |||
+ | Для создания правила маркировки сетевого трафика | ||
+ | <code> | ||
+ | # nft add rule ip filter smark ip daddr {192.168.1.0/ | ||
+ | # nft list ruleset | ||
+ | table ip filter { | ||
+ | chain input { | ||
+ | type filter hook input priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain forward { | ||
+ | type filter hook forward priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain output { | ||
+ | type filter hook output priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain smark { | ||
+ | type filter hook forward priority filter; policy accept; | ||
+ | ip daddr { 172.16.16.0/ | ||
+ | } | ||
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting { | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | } | ||
+ | chain postrouting { | ||
+ | type nat hook postrouting priority 30; policy accept; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
</ | </ | ||
[[tssltd: | [[tssltd: |
tssltd/маркировка_сетевого_трафика_по_ip-адресу.1696858758.txt.gz · Last modified: 2023/10/09 16:39 by n.ganenkov