This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# ifrename.sh: rename ethx and wlanx to persistent names | |
# Dependency: ip ethtool | |
# See also: https://github.com/systemd/systemd/blob/master/src/udev/udev-builtin-net_id.c | |
# TODO: currently only support pci-e devices | |
ip -br l | cut -d' ' -f1 | while read i; do | |
prefix=$(echo "$i" | cut -c-2) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<AnyConnectProfile xmlns="http://schemas.xmlsoap.org/encoding/"> | |
<ClientInitialization> | |
<UseStartBeforeLogon UserControllable="true">false</UseStartBeforeLogon> | |
<AutomaticCertSelection UserControllable="true">true</AutomaticCertSelection> | |
<ShowPreConnectMessage>false</ShowPreConnectMessage> | |
<CertificateStore>All</CertificateStore> | |
<CertificateStoreMac>All</CertificateStoreMac> | |
<CertificateStoreOverride>false</CertificateStoreOverride> | |
<ProxySettings>Native</ProxySettings> |
OlderNewer