INT-firewall konfiguration
From Datateknik
(Difference between revisions)
(Created page with "Nedanstående fungerar <font color="red">ej</font>! =Gamla FirewallD= *Tag bort firewalld! * Om du i en annan kurs måste konfa FirewallD -> titta inte här http://catch-up.cn...") |
(→Gamla FirewallD) |
||
Line 3: | Line 3: | ||
*Tag bort firewalld! | *Tag bort firewalld! | ||
* Om du i en annan kurs måste konfa FirewallD -> titta inte här http://catch-up.cnap.hv.se/wiki/index.php?title=firewalld_konfiguration | * Om du i en annan kurs måste konfa FirewallD -> titta inte här http://catch-up.cnap.hv.se/wiki/index.php?title=firewalld_konfiguration | ||
+ | |||
+ | = Detta är ett scripts som tar bort allt gammalt = | ||
+ | |||
+ | #!/usr/sbin/nft -f | ||
+ | |||
+ | flush ruleset | ||
+ | |||
+ | table inet filter { | ||
+ | chain input { | ||
+ | type filter hook input priority 0; | ||
+ | policy drop; | ||
+ | } | ||
+ | |||
+ | chain forward { | ||
+ | type filter hook input priority 0; | ||
+ | policy accept; | ||
+ | } | ||
+ | |||
+ | chain output { | ||
+ | type filter hook input priority 0; | ||
+ | policy accept; | ||
+ | } |
Revision as of 11:40, 20 January 2020
Nedanstående fungerar ej!
Gamla FirewallD
- Tag bort firewalld!
- Om du i en annan kurs måste konfa FirewallD -> titta inte här http://catch-up.cnap.hv.se/wiki/index.php?title=firewalld_konfiguration
Detta är ett scripts som tar bort allt gammalt
- !/usr/sbin/nft -f
flush ruleset
table inet filter { chain input { type filter hook input priority 0; policy drop;
}
chain forward { type filter hook input priority 0; policy accept;
}
chain output { type filter hook input priority 0; policy accept;
}