Search found 38 matches

by tomkep
2021/03/25 19:32:13
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: SSSD no longer registering DNS entries
Replies: 2
Views: 5489

Re: SSSD no longer registering DNS entries

I suspect this is caused by removal of RC4 encryption from default crypto policy in RHEL/CentOS 8.

Try to issue:

Code: Select all

update-crypto-policies --set DEFAULT:AD-SUPPORT
as root to enable RC4 ciphers, reboot and check if it helped.
by tomkep
2021/02/28 17:52:26
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: Configure Intel X550 for 2.5 GbE speed
Replies: 1
Views: 2526

Re: Configure Intel X550 for 2.5 GbE speed

X550-T is known to experience some issues getting 2.5 & 5 Gbps link speeds depending on the link partner and cable quality. And the omission of full support to "force" these link speeds is not helping here as well. Fortunately recent ixgbe driver updates from Intel on sourceforge should already incl...
by tomkep
2021/02/28 17:36:54
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: network-scripts deprecated :-(
Replies: 8
Views: 6527

Re: network-scripts deprecated :-(

NetworkManager mostly works. The biggest exception is running the router with it, the number of routing table updates and notifications it has to process slows it down to a crawl. It basically even cannot display network interfaces with full IPv6 BGP feed (and IPv6 routing table is 8-9 times smaller...
by tomkep
2020/10/13 18:47:56
Forum: 8 /8-Stream / 9-Stream - Networking Support
Topic: rp-pppoe missing
Replies: 3
Views: 5082

Re: rp-pppoe missing

rp-pppoe has been integrated into ppp package:

Code: Select all

boholt:~> rpm -ql ppp | grep rp-pppoe
/usr/lib64/pppd/2.4.7/rp-pppoe.so
Just use it as before. I've basically configured my WAN the same way as I did in CentOS 7, using nmcli.
by tomkep
2019/04/10 16:33:22
Forum: CentOS 7 - Security Support
Topic: hacked user a/c but passwd command not working properly
Replies: 10
Views: 4244

Re: hacked user a/c but passwd command not working properly

I would also look at what's in /etc/nsswitch.conf in passwd: line and in /etc/pam.d/passwd and any files referenced there (by include or substack).

Is there any chance there is a password quality checker (there usually is) and you are trying to set low quality password?
by tomkep
2019/04/06 22:12:39
Forum: CentOS 7 - General Support
Topic: Authentication denied
Replies: 2
Views: 840

Re: Authentication denied

Is it possible that /, /tmp or /var/tmp were full? Some of the services you use for authentication may need some temp space in one of these places and may fail if it is not available...
by tomkep
2019/03/06 18:51:34
Forum: CentOS 7 - Networking Support
Topic: Setting up network bridge during boot
Replies: 3
Views: 1446

Re: Setting up network bridge during boot

Yes, it looks like clevis-dracut causes some interference with regular NetworkManager connections. I have similar problem but with 802.1x, which does not start as the interface was brought up earlier...
by tomkep
2019/03/02 12:16:05
Forum: CentOS 7 - Networking Support
Topic: Way to keep device up with no cable attached?
Replies: 2
Views: 977

Re: Way to keep device up with no cable attached?

I believe you need to install NetworkManager-config-server package to achieve this.
by tomkep
2019/02/13 18:18:35
Forum: CentOS 7 - General Support
Topic: Kickstart Issues
Replies: 2
Views: 990

Re: Kickstart Issues

I am using sed in %post script without a problem. Have you installed sed package? What is the error logged for sed invocation? I am doing: set -x exec >& /root/post.log at the very beginning of my %post script to get the idea about what is going on and see any failures. As for extra repositories I a...
by tomkep
2019/02/13 18:01:45
Forum: CentOS 7 - Networking Support
Topic: Enabling virtual functions on an SR-IOV ethernet adapter
Replies: 10
Views: 16945

Re: Enabling virtual functions on an SR-IOV ethernet adapter

Please check what /sys/class/net/p5p1/device/sriov_totalvfs lists. You cannot create more VFs than the number listed in that file. For example I have Intel's 82576 based NIC which only allows 7 VFs per PF: vesemir:~> cat /sys/class/net/enp2s0f0/device/sriov_totalvfs 7 But my X553 based LOM can do 63...