tssltd:маркировка_сетевого_трафика_по_ip-адресу
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
tssltd:маркировка_сетевого_трафика_по_ip-адресу [2022/10/19 11:24] – r.krestianinov | tssltd:маркировка_сетевого_трафика_по_ip-адресу [2023/10/12 05:53] (current) – n.ganenkov | ||
---|---|---|---|
Line 1: | Line 1: | ||
[[tssltd: | [[tssltd: | ||
- | **Маркировка сетевого трафика по ip-адресу | + | ==== Маркировка сетевого трафика по ip-адресу |
- | Для создания правила маркировки сетевого трафика | + | === Маркировка сетевого трафика |
- | nft add rule ip filter smark ip saddr 192.168.1.0/ | + | <WRAP indent> |
- | + | ||
- | {{ : | + | |
- | Рисунок 1 – Маркировка сетевого трафика по ip-адресу источника | + | |
- | Для создания правила маркировки сетевого трафика на основе | + | Для создания правила маркировки сетевого трафика на основе ip-адреса источника (192.168.1.0/ |
- | | + | |
- | + | ||
- | {{ :tssltd: | + | |
- | Рисунок 2 – Маркировка сетевого трафика по группе ip-адресов источника | + | |
- | **Маркировка сетевого трафика по ip-адресу назначения** | + | < |
+ | # 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; | ||
+ | } | ||
- | Для создания правила маркировки сетевого трафика на основе ip-адреса назначения (192.168.1.0/ | + | chain forward { |
- | nft add rule ip filter | + | |
- | + | } | |
- | {{ : | + | |
- | Рисунок 3 – Маркировка сетевого трафика по ip-адресу назначения | + | |
- | Для создания правила маркировки сетевого трафика на основе группы ip-адресов назначения (192.168.1.0/ | + | chain output { |
+ | type filter hook output priority | ||
+ | } | ||
- | nft add rule ip filter | + | chain smark { |
- | + | type filter hook forward priority | |
- | {{ : | + | |
- | Рисунок 4 – Маркировка сетевого трафика по группе ip-адресов назначения | + | } |
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | | ||
+ | chain postrouting { | ||
+ | type nat hook postrouting priority 30; policy accept; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Для создания правила маркировки сетевого трафика на основе группы 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; | ||
+ | } | ||
+ | |||
+ | 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; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | |||
+ | === Маркировка сетевого трафика по ip-адресу назначения === | ||
+ | |||
+ | <WRAP indent> | ||
+ | |||
+ | Для создания правила маркировки сетевого трафика на основе ip-адреса назначения (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 192.168.1.0/ | ||
+ | } | ||
+ | } | ||
+ | table ip nat { | ||
+ | chain prerouting { | ||
+ | type nat hook prerouting priority 30; policy accept; | ||
+ | } | ||
+ | |||
+ | chain postrouting { | ||
+ | type nat hook postrouting priority 30; policy accept; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | Для создания правила маркировки сетевого трафика на основе группы ip-адресов назначения (192.168.1.0/ | ||
+ | < | ||
+ | # 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/маркировка_сетевого_трафика_по_ip-адресу.1666167844.txt.gz · Last modified: 2022/10/19 11:24 by r.krestianinov