TS-4900 Network configuration example: Difference between revisions

From embeddedTS Manuals
No edit summary
No edit summary
Line 1: Line 1:
Our default yocto image uses systemd which stores its network files in "/etc/systemd/network/".  The simplest network config would look like this:
Our default yocto image uses systemd which stores its network files in "/etc/systemd/network/".  The simplest network config would look like this:


In /etc/systemd/network/50-eth.network
In /etc/systemd/network/eth.network
<source lang=ini>
<source lang=ini>
[Match]
[Match]
Line 11: Line 11:


For a static configuration you would create a config file for that specific interface.
For a static configuration you would create a config file for that specific interface.
/etc/systemd/network/10-static-eth0.network
/etc/systemd/network/eth0.network
<source lang=ini>
<source lang=ini>
[Match]
[Match]

Revision as of 10:31, 28 May 2015

Our default yocto image uses systemd which stores its network files in "/etc/systemd/network/". The simplest network config would look like this:

In /etc/systemd/network/eth.network

[Match]
Name=eth*

[Network]
DHCP=yes

For a static configuration you would create a config file for that specific interface. /etc/systemd/network/eth0.network

[Match]
Name=eth0

[Network]
Address=192.168.0.50/24
Gateway=192.168.0.1
DNS=192.168.0.1

For more information on what options are available to configure the network, see the systemd network documentation.