Changes in MTU Size

Rockstor .jqstooltip { position: absolute;left: 0px;top: 0px;visibility: hidden;background: rgb(0, 0, 0) transparent;background-color: rgba(0,0,0,0.6);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);-ms-filter: “progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)”;color: white;font: 10px arial, san serif;text-align: left;white-space: nowrap;padding: 5px;border: 1px solid white;z-index: 10000;}.jqsfield { color: white;font: 10px arial, san serif;text-align: left;}

Traceback (most recent call last): File “/opt/rockstor/eggs/gunicorn-0.16.1-py2.7.egg/gunicorn/workers/sync.py”, line 34, in run client, addr = self.socket.accept() File “/usr/lib64/python2.7/socket.py”, line 202, in accept sock, addr = self._sock.accept() error: [Errno 11] Resource temporarily unavailable

I’m not sure what this post is about … but answering to the title, the correct way of making changes on network connections on Enterprise Linux systems is using nmcli.
The command is like follows:

# nmcli connection modify "connection name" 802-3-ethernet.mtu "mtu_value"

Which for connection eth1 for example would be:

nmcli con mod eth1 802-3-ethernet.mtu 1450
2 Likes