Files
tldr/pages.tr/linux/ip-address.md
2022-03-09 19:42:24 -03:00

29 lines
679 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# ip address
> IP adresi yönetimi alt komutu.
> Daha fazla bilgi: <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}}`