MTU 테이블을 삭제하는 방법은 무엇입니까?

MTU 테이블을 삭제하는 방법은 무엇입니까?

Linux 환경에서 mtu 테이블을 재설정하려고 합니다. 나는 다음을 시도하고 있습니다 :

ip route flush cache

하지만 작동하지 않는 것 같습니다.

어떤 제안이 있으십니까? 감사해요.

답변1

MTU는 최대 전송 단위입니다. 테이블이 아니라 인터페이스에서 전송되는 최대 패킷 크기가 얼마인지 나타내는 매개변수입니다. 씻어낼 수 없습니다.

뭐하고 싶어? 라우팅 테이블을 새로 고치려면 ip route flush매뉴얼 페이지( man 8 ip-route) 에 언급된 각 라우팅 규칙을 호출해야 합니다.

        ip route flush
          flush routing tables
          this command flushes routes selected by some criteria.

          The arguments have the same syntax and semantics as the arguments of ip route show, but routing tables are not listed but purged. The only difference is the default action:
          show dumps all the IP main routing table but flush prints the helper page.

          With the -statistics option, the command becomes verbose. It prints out the number of deleted routes and the number of rounds made to flush the routing table. If the option
          is given twice, ip route flush also dumps all the deleted routes in the format described in the previous subsection.

관련 정보