Useful commands: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(3 intermediate revisions by the same user not shown) | |||
Line 5: | Line 5: | ||
===Setting network interface parameters with nmcli=== | ===Setting network interface parameters with nmcli=== | ||
sudo nmcli con edit eno12399 | sudo nmcli con edit eno12399 | ||
nmcli> set ipv4.addresses 192.168.2.6/24,192.168.3.6/24 | nmcli> set ipv4.addresses 192.168.2.6/24,192.168.3.6/24 | ||
nmcli> set connection.autoconnect yes | |||
nmcli> print ipv4 | nmcli> print ipv4 | ||
ipv4.method: auto | ipv4.method: auto | ||
Line 17: | Line 17: | ||
192.168.3.6/24 | 192.168.3.6/24 | ||
nmcli> save | nmcli> save | ||
</code> | The configuration files are stored in <code>/etc/NetworkManager/system-connections/eno12399.nmconnection</code>. |
Latest revision as of 15:42, 28 March 2023
Setting a hostname[edit | edit source]
hostnamectl set-hostname "ClusterTest1"
Setting network interface parameters with nmcli[edit | edit source]
sudo nmcli con edit eno12399 nmcli> set ipv4.addresses 192.168.2.6/24,192.168.3.6/24 nmcli> set connection.autoconnect yes nmcli> print ipv4 ipv4.method: auto ipv4.dns: -- ipv4.dns-search: -- ipv4.dns-options: "" ipv4.dns-priority: 0 ipv4.addresses: 192.168.2.6/24, 192.168.3.6/24 nmcli> save
The configuration files are stored in /etc/NetworkManager/system-connections/eno12399.nmconnection
.