এটি পুরোপুরি সূক্ষ্ম বিন্যাস - আমি ঠিক একই ব্যবহার করি। আমি কেবল লাইনের শেষে একটি মন্তব্য যুক্ত করব (অতিরিক্ত)। এটি কাজ থেকে অংশ dhcpd.conf
:
host wrt45gl-etika { hardware ethernet 00:21:29:a1:c3:a1; fixed-address ---.219.43.135; } # MSIE routeris WRT54GL
@ ক্রিসটফ যেমন উল্লেখ করেছেন, সেখানে বিশ্বব্যাপী বিকল্প ঘোষিত হতে পারে (বা পরিষেবা ডিফল্ট ব্যবহৃত হয়েছে) যা আইপিগুলি নির্ধারিত / এটিকে ওভাররাইড করার উপায়কে প্রভাবিত করতে পারে।
ডিএইচসিপিএন-সার্ভার (v3) থেকে ইস্ক-ডিএইচসিপি-সার্ভারে (ভি 4) স্থানান্তরিত করার সময় আমাকে কিছু বাধ্যতামূলক বিকল্পগুলি যুক্ত করতে হয়েছিল এবং কিছু ঘোষণাপত্র পুনরায় লেখার প্রয়োজন ছিল। তবে কনফিগার ফাইলের কাঠামো সহজ ছিল:
#
# Sample configuration file for ISC dhcpd for Debian
#
# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;
# option definitions common to all supported networks...
option domain-name "mf.vu.---";
option domain-name-servers ---.219.80.11, ---.219.80.2, ---.171.22.22;
default-lease-time 2678400;
max-lease-time 2678400;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
# The subnet that shares this physical network
shared-network TOTAL_MF {
server-name "letta.mf.vu.--";
subnet ---.219.43.128 netmask 255.255.255.192 {
option routers ---.219.43.190;
option broadcast-address ---.219.43.191;
group {
host wrt45gl-etika { hardware ethernet 00:21:29:a1:c3:a1; fixed-address ---.219.43.135; } # MSIE routeris WRT54GL
# ...
host saulute { hardware ethernet 00:21:28:10:f4:16; fixed-address ---.219.43.189; } # Virtual Qemu PC NIC
}
}
subnet 172.16.43.128 netmask 255.255.255.192 {
option routers 172.16.43.129;
option broadcast-address 172.16.43.191;
group{
host ligo { hardware ethernet 08:00:20:7A:E2:70; fixed-address 172.16.43.179; } #a225 ligo
# ...
host vumfsa2 { hardware ethernet 00:80:48:8d:12:f0; fixed-address 172.16.43.140; } # 118
}
}
}
সেখানে আমি না pool
, কোনও range
ঘোষণা ব্যবহার করি না । কেবলমাত্র দুটি সাবনেট ঘোষণা (একের পর এক)।
সেখানে আমার হোস্টগুলির কাছে নির্ধারিত কোনও এলোমেলো আইপি পাওয়া যায় নি যা এখানে ঘোষণা করা হয়েছে (এমএসিগুলিতে আবদ্ধ)।
255.255.255.255
। আমি এখনও কিছু প্রয়োজনpost-up route add
এবংpre-down route del
হবে। আমি কি করতে পারি, বা আমার এখানে সব করা উচিত?