1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 17:13:50 +02:00

ifconfig: add Arabic translation (#15530)

This commit is contained in:
Machiavelli 2025-01-20 19:02:20 +02:00 committed by GitHub
parent 81ba2a6d23
commit 6c3110e895
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,24 @@
# 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}}`