Results 1 to 1 of 1

Thread: autoinstall.yaml, match a wifi interface by name wildcard, 24.04

  1. #1
    Join Date
    May 2024
    Beans
    1

    autoinstall.yaml, match a wifi interface by name wildcard, 24.04

    Is there any way to get similar functionality for WiFi interfaces as you can for hard wired ethernet modules via match: name: wildcard? I am trying to setup an automated install that will connect to a network regardless of the name of the wifi interface. I am away from this setup at the moment but my config was (or very close to) the following, and it gave an error which said fairly point blank that you cannot use match with wifis.

    Code:
    network:
        version: 2
        ethernets:
            all-en:
                match:
                    name: "en*"
                dhcp4: true
        wifis:
            all-wl:
                match:
                    name: "wl*"
                dhcp4: true
                access-points:
                    "network_ssid_name":
                        password: "**********"
    Last edited by jds8086; May 19th, 2024 at 10:10 PM.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •