1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 10:15:28 +02:00
tldr/pages.ar/common/ifconfig.md
2025-01-20 22:32:20 +05:30

24 lines
601 B
Markdown

# 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}}`