문제

On linux boxes it is possible to add multiple ip addresses to the same network interface.

It's achived with the following command:

ip addr add 128.133.123.83/24 dev eth0

Is there any way to to the same with OS X ?

I've tried to put multiple ip addresses (comma separated like the dns) in System Preferences / Network with no luck...

도움이 되었습니까?

해결책

Yeah, it's pretty easy. Open System Preferences, go to Networking, then click the Plus sign under the left bar. Choose the interface, give a name to the adapter configuration you're creating, then press OK. You will have to provide manual configuration of IP address and DNS for the second entry -- DHCP won't work for it, because it shares the same MAC address as the original entry, so the router won't issue it another address. Click Apply when you're done, and enjoy. Your adapter now has two IP addresses.

다른 팁

sudo ifconfig en0 alias 128.133.123.83/24 up

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 apple.stackexchange
scroll top