Search found 13 matches

by nicholaswkc
2023/05/24 08:38:27
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: Configure Suricata IPS Mode with Nftables firewall rule
Replies: 0
Views: 171

Configure Suricata IPS Mode with Nftables firewall rule

Dear all forumer, I had configured my Centos 9 stream to implement IPS with suricata. Everything run perfectly except the traffic is not directed to nftables yet. This is my nftables firewall rules. /etc/sysconfig/nftables.config table inet filter { chain input { type filter hook input priority 0; p...
by nicholaswkc
2023/03/13 02:37:44
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: iptables INPUT Chain default policy
Replies: 11
Views: 1008

Re: iptables INPUT Chain default policy

Please tell me on how to do it rather than ask me to read some documentation. Questions: Backup current ruleset and flush the current ruleset? Can you tell me how to load nft ruleset into kernel temporalily and load the nft config file permanenetly? I'm using this firewall rules at below. https://wi...
by nicholaswkc
2023/03/11 22:18:55
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: iptables INPUT Chain default policy
Replies: 11
Views: 1008

Re: iptables INPUT Chain default policy

1. In firewall-cmd, we can made runtime-to-permanent, is there any features of nftables. I want to test the firewall rules first before made permanent. If yes, what command? The firewalld has its config stored in files. The service reads the config from files to memory (runtime) on boot (and on som...
by nicholaswkc
2023/03/11 09:47:10
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: Change Security Profiles
Replies: 3
Views: 294

Re: Change Security Profiles

man update-crypto-policies Do you recommend me to input this command update-crypto-policies --set FUTURE. I worry things will breaks such as install software. I had try to install CENTOS with advanced security profiles and I cannot sudo command - only can login as su, trigger software install error...
by nicholaswkc
2023/03/11 09:39:13
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: iptables INPUT Chain default policy
Replies: 11
Views: 1008

Re: iptables INPUT Chain default policy

There are two semi-related things in what you see. One is the nftables syntax. It differs from iptables syntax. One can read the description of syntax: https://wiki.nftables.org/wiki-nftables/index.php/Quick_reference-nftables_in_10_minutes Or look at examples: https://linux-audit.com/nftables-begi...
by nicholaswkc
2023/03/11 09:37:24
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: Difficult connect to WiFI Enterprise
Replies: 5
Views: 597

Re: Difficult connect to WiFI Enterprise

error 691 "The remote connection was denied because the user name and password combination you provided is not recognized, or the selected authentication protocol is not permitted on the remote access server" I'm sure that the usernam and password input is correct. The authentication protocol is PE...
by nicholaswkc
2023/03/09 09:04:22
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: Change Security Profiles
Replies: 3
Views: 294

Re: Change Security Profiles

Anyone please help me. I did not find anything from google search.
by nicholaswkc
2023/03/09 08:48:31
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: iptables INPUT Chain default policy
Replies: 11
Views: 1008

Re: iptables INPUT Chain default policy

First, you can look at what firewalld does for you with: nft list ruleset If you are not happy with that and can't find a way to tell the firewalld to do what you desire, then disable the firewalld.service , enable the nftables.service , and write a ruleset that you think is better. However, do rem...
by nicholaswkc
2023/03/08 06:57:06
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: Difficult connect to WiFI Enterprise
Replies: 5
Views: 597

Difficult connect to WiFI Enterprise

Dear All, I'm using Centos 9 Stream and i need connect my company network which is WiFI Enterprise. I follow ubuntu forum which setup a file /etc/NetworkManager/system-connections/SriPentas-0fbafd7a-1fe7-4559-a1ba-a30f98383acc.nmconnection [connection] id=SriPentas uuid=0fbafd7a-1fe7-4559-a1ba-a30f9...
by nicholaswkc
2023/03/04 23:34:38
Forum: 8 /8-Stream / 9-Stream - Security Support
Topic: iptables INPUT Chain default policy
Replies: 11
Views: 1008

Re: iptables INPUT Chain default policy

First, there is no iptables. The kernel has now nftables. Second, the firewall rules are by default managed by FirewallD and firewalld's default is to: 1. Allow outgoing traffic 2. Reject routed traffic 3. All incoming traffic is in zone 'public' The zone public has rules: 1. Allow incoming new con...