Search found 4391 matches

by jlehtone
2023/09/20 04:57:43
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Strange script files (curiosity]
Replies: 2
Views: 310

Re: Strange script files (curiosity]

Emacs has auto-save-mode: https://www.gnu.org/software/emacs/manu ... -Save.html
See also: http://xahlee.info/emacs/emacs/emacs_au ... ackup.html

The autosaves are separate from the *~ that holds the previous version after you do save a buffer.
by jlehtone
2023/09/18 08:38:35
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: centos8 stream-Problem with Apache2 or php
Replies: 5
Views: 275

Re: centos8 stream-Problem with Apache2 or php

Selinux does not log everything by default. See man semanage-dontaudit


'audit2why' translates messages into description:

Code: Select all

ausearch -a 262433 | audit2why
by jlehtone
2023/09/15 10:14:43
Forum: CentOS 7 - Security Support
Topic: CVE-2023-3899
Replies: 1
Views: 476

Re: CVE-2023-3899

The rpm -q --changelog python-syspurpose | grep -i cve shows nothing, but rpm -qi python-syspurpose tells: Version : 1.24.52 Release : 2.el7.centos Build Date : Wed 23 Aug 2023 The https://access.redhat.com/errata/RHSA-2023:4701 shows that Red Hat has released Tue 22 Aug 2023 errata that includes pa...
by jlehtone
2023/09/14 15:44:18
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: CENTOS-9 SSH PROBLEM
Replies: 2
Views: 407

Re: CENTOS-9 SSH PROBLEM

The RSA keys have to be at least 2048 bits.
See https://access.redhat.com/documentation ... c-policies

I've shifted to ed25519 keys. They work on el7, el8, and el9.
by jlehtone
2023/09/14 13:52:28
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Centos Stream 9 shutdown issue
Replies: 19
Views: 1849

Re: Centos Stream 9 shutdown issue

verbal_666 wrote:
2023/09/14 12:44:14
Last kernel update solved the problem 👍
Is that kernel-5.14.0-364.el9?
by jlehtone
2023/09/14 06:53:05
Forum: CentOS 7 - Networking Support
Topic: Using Zones in Firewalld to Block Outbound Access
Replies: 13
Views: 1492

Re: Using Zones in Firewalld to Block Outbound Access

You could run that systemctl daemon-reload as the output suggests. The firewalld.service seems to be masked, so everything should be ok. I do agree with Trevor that complete removal of FirewallD is the most clean option. The removal of firewall* on CentOS 7 system probably removes: firewall-applet, ...
by jlehtone
2023/09/13 14:45:36
Forum: CentOS 7 - Networking Support
Topic: Using Zones in Firewalld to Block Outbound Access
Replies: 13
Views: 1492

Re: Using Zones in Firewalld to Block Outbound Access

yildizabdullah wrote:
2023/09/12 13:37:59
Is there any side effect of leaving the state of the firewalld.service as it is?
Do show output of systemctl status firewalld

A masked service points to /dev/null and cannot possibly start. A merely disabled service -- not masked -- could be started by some other process.
by jlehtone
2023/09/12 12:29:54
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Iptables-Firewalld Conversion
Replies: 8
Views: 402

Re: Iptables-Firewalld Conversion

I had to convert the rules to firewalld. It is already chosen not by me. Thank you for your answer. Although you have to use FirewallD, that does not dictate how to configure it. Rather than talking directly to firewalld, one can use an Ansible playbook . See https://www.redhat.com/en/blog/automati...
by jlehtone
2023/09/12 12:14:15
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Iptables-Firewalld Conversion
Replies: 8
Views: 402

Re: Iptables-Firewalld Conversion

Which part of documentation says it is destination port? I am sorry i couldnt find it. My bad, that is not written explicitly. We do know that the (xml) definition can have attributes "port" and "source-port". Can we be confident that the "source-port" is a source port? I think so. That leaves the ...
by jlehtone
2023/09/11 16:36:35
Forum: 8 /8-Stream / 9-Stream - General Support
Topic: Iptables-Firewalld Conversion
Replies: 8
Views: 402

Re: Iptables-Firewalld Conversion

For completeness: But i am not sure this is right because as you can see we have destionation ports in our iptables rules but i cannot find "a destination port configuration" for a firewalld service. By the way my default zone is public right now. So eth1 interface zone is public. I am not even sure...