mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-28 04:35:27 +02:00
601 B
601 B
ifconfig
مُكوِّن واجهة الشبكة. لمزيد من التفاصيل: https://net-tools.sourceforge.io/man/ifconfig.8.html.
- عرض إعدادات الشبكة لواجهة محددة:
ifconfig {{interface_name}}
- عرض تفاصيل جميع الواجهات، بما في ذلك الواجهات المعطلة:
ifconfig -a
- تعطيل واجهة محددة:
ifconfig {{interface_name}} down
- تمكين واجهة محددة:
ifconfig {{interface_name}} up
- تعيين عنوان IP لواجهة محددة:
ifconfig {{interface_name}} {{ip_address}}