পরামিতি ছাড়াই init.d কমান্ড চালান, এটি আপনাকে জানাবে যে ব্যবহারটি:
~# /etc/init.d/networking
Usage: /etc/init.d/networking {start|stop}
দেখে মনে হচ্ছে যে পুনঃসূচনাটি হ্রাস করা হয়েছে
এটি কমপক্ষে যেহেতু দেবিয়ানে অবহেলা করা হয়েছে:
netbase (4.38) unstable; urgency=low
* Create /etc/sysctl.d/bindv6only.conf on upgrades and new installs
to set net.ipv6.bindv6only=1.
* Made the init script check for swap over the network. (Closes: #540697)
* Temporarily depend on initscripts to work around a bug in multistrap.
(Closes: #556399)
* etc-services: added sieve (4190/tcp).
* etc-services: removed sieve (2000/tcp). (Closes: #555664)
* Made the init script warn that using the force-reload and restart
parameters is not a good idea. (Closes: #550240)
-- Marco d'Itri <md@linux.it> Sun, 06 Dec 2009 17:09:41 +0100
সম্পর্কিত বাগ # 550240 এখানে
যা বেশ কদর্য। রিমোট থেকে নেটওয়াক্রিং পুনরায় চালু করতে সম্ভবত পর্দার সেশনের মধ্যে নীচে সবচেয়ে ভাল এবং সুরক্ষিত পদ্ধতি চালানো হবে :
~# /etc/init.d/networking stop; /etc/init.d/networking start
আজকের হিসাবে networking
উপস্থিত init স্ক্রিপ্টের, restart
এবং force-reload
কাজ করবে সবচেয়ে পরিস্থিতি। আমি অনুমান করি সতর্কবার্তা উপেক্ষা করার জন্য এবং পুনঃসূচনাটি ব্যবহার করা যুক্তিসঙ্গতভাবে নিরাপদ । তবে আমি স্টপ + শুরুর পথ দিয়ে যাব :-)
case "$1" in
start)
process_options
log_action_begin_msg "Configuring network interfaces"
if ifup -a; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
stop)
check_network_file_systems
check_network_swap
log_action_begin_msg "Deconfiguring network interfaces"
if ifdown -a --exclude=lo; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
force-reload|restart)
process_options
log_warning_msg "Running $0 $1 is deprecated because it may not enable again some interfaces"
log_action_begin_msg "Reconfiguring network interfaces"
ifdown -a --exclude=lo || true
if ifup -a --exclude=lo; then
log_action_end_msg $?
else
log_action_end_msg $?
fi
;;
*)
echo "Usage: /etc/init.d/networking {start|stop}"
exit 1
;;
esac
/etc/init.d/networking stop; /etc/init.d/networking start