mirror of https://github.com/ipxe/ipxe.git
Warn when net device on an active route is not open.
parent
d45c5e7ce7
commit
de042993c0
|
@ -36,6 +36,8 @@ void route ( void ) {
|
|||
printf ( "%s", inet_ntoa ( miniroute->netmask ) );
|
||||
if ( miniroute->gateway.s_addr != INADDR_NONE )
|
||||
printf ( " gw %s", inet_ntoa ( miniroute->gateway ) );
|
||||
if ( ! ( miniroute->netdev->state & NETDEV_OPEN ) )
|
||||
printf ( " (inaccessible)" );
|
||||
printf ( "\n" );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue