tldr/pages.tr/linux/ip-address.md

29 lines
685 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# ip address
> IP adresi yönetimi alt komutu.
> Daha fazla bilgi için: <https://manned.org/ip-address>.
- Ağ arayüzlerini ve ilişkili IP adreslerini listele:
`ip address`
- Yalnızca etkin ağ arayüzlerini gösterecek şekilde filtrele:
`ip address show up`
- Belirli bir ağ arayüzü hakkındaki bilgileri görüntüle:
`ip address show dev {{eth0}}`
- Bir ağ arayüzüne bir IP adresi ekle:
`ip address add {{ip_adresi}} dev {{eth0}}`
- Bir ağ arayüzünden bir IP adresini kaldır:
`ip address delete {{ip_adresi}} dev {{eth0}}`
- Belirli bir kapsamdaki tüm IP adreslerini bir ağ arayüzünden sil:
`ip address flush dev {{eth0}} scope {{global|host|link}}`