Dziesiate_21

 0    21 flashcards    michalesq
Baskı oynamak kendini kontrol et
 
soru - cevap -
Copy ACL between files
öğrenmeye başla
getfacl file1 | setfacl --set-file=- file2
ACL - setting mask for the file to read only
öğrenmeye başla
setfacl -m m: r file1
Set the default permissions on dir1 to read, write and execute for the starbuck user; execute only if it is a directory
öğrenmeye başla
setfacl -d -m u: starbuck: rwX dir1
Using setfacl, change the "other" permissions to none on file1.
öğrenmeye başla
setfacl -m o:- file1
Remove the default permissions from dir1.
öğrenmeye başla
setfacl --remove-default dir1
Displays all IPs on the machine
öğrenmeye başla
ip addr
Displays IP of the particular device
öğrenmeye başla
ip addr show eth0
Command which shows all hops to get the IP
öğrenmeye başla
treceroute IP
Command to show all listening ports and established connections
öğrenmeye başla
ss
Command to show all listening and established connection
öğrenmeye başla
ss -a
Display all devices in the system
öğrenmeye başla
ls /sys/class/net
Location of network-scripts
öğrenmeye başla
cd /etc/sysconfig/network-scripts/
Command to add new network connection and create script in /etc/sysconfig/network-scripts/
öğrenmeye başla
nmcli con add con-name "my connection" autoconnect yes type ethernet ifname eth1
Command to show network connections
öğrenmeye başla
nmcli dev show
Command to add network connection with static IP and GW and create script in /etc/sysconfig/network-scripts/
öğrenmeye başla
nmcli con add con-name "my connection" autoconnect yes type ethernet ifname eth1 ip4 10.0.0.0 gw4 10.0.0.1
File where we can modify if Kernel should look to resolv. conf or /etc/hosts for finding IPs and names
öğrenmeye başla
/etc/nsswitch.conf
How to set hostname - not persistent?
öğrenmeye başla
hostnamectl set-hostname <hostname>
How to set hostname - persistent?
öğrenmeye başla
/etc/hostname
How to add DNS server with nmcli (this will modify /etc/sysconfig/network-scripts/ifcfg-eths0 and resolv. conf)?
öğrenmeye başla
nmcli con mod "System eth0" ipv4. dns 8.8.8.8
How to display Google IP and domain name?
öğrenmeye başla
getent hosts google.com
How to up and interface with nmcli?
öğrenmeye başla
nmcli con up eths0

Yorum yapmak için giriş yapmalısınız.