डिफ़ॉल्ट रूप से, आईएसओ छवि से लिनक्स डेबियन 11 स्थापित करते समय, नेटवर्क इंटरफ़ेस को 1 आईपी पता निर्दिष्ट करने के लिए एक फ़ील्ड उपलब्ध होता है। यदि आपको इस नेटवर्क इंटरफ़ेस में कई और आईपी पते जोड़ने की आवश्यकता है, तो निम्न कॉन्फ़िगरेशन का उपयोग करें:
vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto ens3
iface ens3 inet static
address 89.111.186.200
netmask 255.255.255.0
broadcast +
up route -A inet add 89.111.186.1 dev ens3
up route -A inet add default gw 89.111.186.1 dev ens3
auto ens3:1
iface ens3:1 inet static
address 89.111.186.201
netmask 255.255.255.0
broadcast +
auto ens3:2
iface ens3:2 inet static
address 89.111.186.202
netmask 255.255.255.0
broadcast +
auto ens3:3
iface ens3:3 inet static
address 89.111.186.203
netmask 255.255.255.0
broadcast +
iface ens3 inet6 manual
pre-down ip -6 addr flush dev ens3 scope global || :
परिवर्तन करने के बाद, आपको नेटवर्क सेवा पुनः आरंभ करनी होगी:
/etc/init.d/networking restart
DNS सर्वर फ़ाइल में निर्दिष्ट हैं:
vi /etc/resolv.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
No Comments Yet