惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
The GitHub Blog
The GitHub Blog
T
Threatpost
人人都是产品经理
人人都是产品经理
大猫的无限游戏
大猫的无限游戏
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
博客园 - Franky
Recent Commits to openclaw:main
Recent Commits to openclaw:main
Apple Machine Learning Research
Apple Machine Learning Research
酷 壳 – CoolShell
酷 壳 – CoolShell
M
MIT News - Artificial intelligence
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
云风的 BLOG
云风的 BLOG
S
Security Affairs
P
Proofpoint News Feed
L
LINUX DO - 最新话题
宝玉的分享
宝玉的分享
S
Security @ Cisco Blogs
H
Hacker News: Front Page
Security Archives - TechRepublic
Security Archives - TechRepublic
Vercel News
Vercel News
Engineering at Meta
Engineering at Meta
Know Your Adversary
Know Your Adversary
Y
Y Combinator Blog
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
月光博客
月光博客
量子位
博客园_首页
The Last Watchdog
The Last Watchdog
D
DataBreaches.Net
www.infosecurity-magazine.com
www.infosecurity-magazine.com
P
Privacy International News Feed
The Register - Security
The Register - Security
Schneier on Security
Schneier on Security
H
Help Net Security
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
V
Visual Studio Blog
Google DeepMind News
Google DeepMind News
F
Full Disclosure
C
Cyber Attacks, Cyber Crime and Cyber Security
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
S
Schneier on Security
L
Lohrmann on Cybersecurity
S
Secure Thoughts
Stack Overflow Blog
Stack Overflow Blog
Cloudbric
Cloudbric
Microsoft Security Blog
Microsoft Security Blog

NetworkManager

NetworkManager 1.54 NetworkManager 1.52 Protect your VPN from TunnelVision attacks NetworkManager 1.50 Addressing hostname assignment in NetworkManager 1.40 Help NetworkManager project to triage issues NetworkManager 1.48 NetworkManager 1.46 NetworkManager 1.44 NetworkManager 1.42 Set up NMCI on Fedora Linux VM Using Python and NetworkManager to control the network [link] Notes on D-Bus NetworkManager 1.40 NetworkManager 1.38 From ifcfg to keyfiles [link] NetworkManager 1.36 NetworkManager 1.34 NetworkManager 1.32 Initscripts’ ifcfg-rh Format in NetworkManager and its Future [link] How to set up your NetworkManager environment [link] NetworkManager 1.28 [link] Looking forward to Linux network configuration in the initial ramdisk (initrd) [link] NetworkManager 1.26 [link] Internet connection sharing with NetworkManager [link] Why NetworkManager? [link] Please welcome: NetworkManager 1.20 [link] Becoming friends with NetworkManager [link] WireGuard in NetworkManager [link] MAC Address Spoofing in NetworkManager 1.4.0 [link] NetworkManager for administrators Resources for developers man pages Video tutorials VPN support RFKill
NetworkManager 1.30
Beniamino Galvani · 2021-02-18 · via NetworkManager

Two months and a half after the previous release, NetworkManager 1.30 has seen the light today. The development cycle was shorter compared to past releases and therefore the list of new features is not as exciting as usual. There is however interesting stuff worth mentioning.

Create your veth interfaces with NM

A virtual Ethernet (veth) is a special kind of network interface supported by the Linux kernel. It is virtual because it doesn’t represent a hardware device. You can create veths only in pairs and all the traffic sent through one interface is received by the other veth.

Until now NM treated a veth interface like a normal Ethernet. It was possible to activate a connection profile of type ethernet on an existing veth and NM would bring the interface up and start DHCP (or set up static addresses).

Users can now also create a veth pair through NetworkManager, by adding a new connection profile of type veth. The connection needs a veth.peer property that specifies the name of the peer interface to create.

Stronger security for WPA3-Enterprise

WPA3 (Wi-Fi Protected Access 3) is the latest version of the standard developed by the Wi-Fi Alliance to secure wireless networks.

Among other things, it specifies a new authentication protocol (SAE, Simultaneous Authentication of Equals) to be used in WPA-Personal mode; NetworkManager already supports SAE since version 1.16.

Another addition of WPA3 is a new security level to be used with WPA-Enterprise that guarantees higher security by only allowing protocols with a minimum strength of 192 bits. This new WPA-Enterprise 192-bit mode can now be configured in NetworkManager by setting the wifi-security.key-mgmt property to WPA-EAP-SUITE-B-192.

initrd generator improvements

Since version 1.16, NetworkManager provides a connection generator tool that parses the kernel command line in the initramfs and creates a list of connection profiles that NetworkManager can activate during early stages of the boot.

This tool has seen a lot of improvements recently, including many bug fixes and new features. Among them, there is the support for the rd.net.timeout.carrier and rd.net.dhcp.retry kernel command line arguments. The generator now also accepts a new link6 autoconfiguration mode in ip= arguments to use only link-local IPv6 addressing.

A new libnm API to read and write connection profiles

This item is particularly interesting for developers. libnm is a library to interact with NetworkManager and provides an API based on objects (Devices, Connections, Settings, IP Configurations, etc.) that can be easily used to discover and change the network configuration, hiding the complexity of the D-Bus API of NetworkManager.

In this new release, libnm provides functions to read and write connection profiles in the keyfile format, the one used natively by NetworkManager. Check the example!

Conclusion

This is an incomplete list of some of the changes introduced by the new 1.30 release. For the full list please see the NEWS file.

And, as always, thanks to everybody who contributed.