eth0 대신 eth1에서 명시 적으로 Ping하는 방법


16

eth1로 핑을 실행하려고하는데 프로그램은 eth0 (기본 네트워크 장치)을 사용합니다. 사용 가능한 팁, 요령 또는 대체 기술이 있습니까?


핑을 "with"인터페이스로 정확하게 실행한다는 것은 무엇을 의미합니까?
David Schwartz '

답변:


20

매뉴얼에서 :

  -I interface
          interface is either an address, or an interface name.  If interface is an address, it sets source
          address to specified interface address.  If interface in an interface name, it sets source inter‐
          face  to  specified  interface.   For  ping6, when doing ping to a link-local scope address, link
          specification (by the '%'-notation in destination, or by this option) is required.

따라서 대답은 다음과 같습니다.

ping -I eth1 123.123.123.123

5

-I옵션을 사용하십시오 -

-I interface address
          Set  source address to specified interface address. Argument may
          be numeric IP address or name of device. When pinging IPv6 link-
          local address this option is required.

핑 -I eth1 www.google.com


2

-I옵션을 사용하면 이 작업을 수행 할 것이라고 믿습니다 . 한 번해야했지만 얼마 전에 일 이었어요. 핑 매뉴얼 페이지에서 :

-I interface address
소스 주소를 지정된 인터페이스 주소로 설정하십시오. 인수는 숫자 IP 주소 또는 장치 이름 일 수 있습니다. IPv6 링크 로컬 주소를 핑 (ping) 할 때이 옵션이 필요합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.