Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add configurations for link-local networking for OPi images #23

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 27 additions & 3 deletions OPi5_CIDATA/network-config
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
#
# https://en.wikipedia.org/wiki/YAML

# Some additional examples are commented out below

network:
version: 2
renderer: NetworkManager
Expand All @@ -26,10 +24,36 @@ network:
name: "en*"
dhcp4: true
optional: true
networkmanager:
passthrough:
connection.autoconnect-priority: 50
connection.autoconnect-retries: 2
zz-all-eth:
renderer: NetworkManager
match:
name: "eth*"
dhcp4: true
optional: true

networkmanager:
passthrough:
connection.autoconnect-priority: 50
connection.autoconnect-retries: 2
# Link-local as fallback for direct connection
zz-all-en-ll:
match:
name: en*
dhcp4: false
link-local: [ ipv4 ]
renderer: NetworkManager
networkmanager:
passthrough:
connection.autoconnect-priority: -1
zz-all-eth-ll:
match:
name: eth*
dhcp4: false
link-local: [ ipv4 ]
renderer: NetworkManager
networkmanager:
passthrough:
connection.autoconnect-priority: -1