9 lines
159 B
Bash
Executable File
9 lines
159 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Plain
|
|
ip a add 192.168.57.132/24 dev eth1 && \
|
|
rc-service sshd start
|
|
|
|
|
|
# NetworkManager
|
|
nmcli con mod "Con name" ipv4.adress "192.168.57.132/24" |