7 месяцев назад
Configuring a virtual switch over DNS
To change the name on a Linux device, you need to edit the hostname file In the case of Linux, in order for the hostname to be applied, you need to reboot the device.To change the name to Eltex (in this example, HQ-RTR), run the following commands: vesr# config vesr(config)# hostname hq-rtr.au-team.irpo vesr(config)# clock timezone gmt +5 vesr(config)# username net_admin vesr(config-user)# password P@ssw0rd vesr(config-user)# privilege 15 vesr(config-user)# exit See the process of configuring the...
06:44
1,0×
00:00/06:44
500,2 тыс смотрели · 4 года назад
2 месяца назад
IP-интерфейс Linux up
You’re asking about how to bring a network interface “up” in Linux, meaning activating it so that it can send and receive network traffic. The primary command for this is ip, but you might also encounter the older ifconfig command. Both achieve the same goal, but ip is the modern, preferred method. Использование команды Ip (современный подход): Определите интерфейс: сначала вам нужно узнать имя сетевого интерфейса, который вы хотите подключить. Распространённые имена: eth0, wlan0, enp0s3 и т. д. Используйте следующую команду для просмотра списка доступных интерфейсов: 2. ip link show Откроется список сетевых интерфейсов с их текущим состоянием...