Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

No Format
{
	“airplane-mode”: true,
	"modems": [
		{
			"device-name": "lte-modem1", # logicallabel of the physical device
			"physical-addrs: {
				# nim will specify one/some of these. With multiple LTE modems the USB address is the most unambiguous and reliable.
				“interface”: “wwan0”,
				“usb”: “1:2.3”, # <bus>:[port]
				"pci": "0000:11:00.0",
			},
			“apns”: [“internet”],
			“probe-ip”address”: “8.8.8.8”
		},
	]
}

Note: interface/usb/pci will be obtained by nim from AssignableAdapters based on the PhyLabel of NetworkPortConfig.

...