it appears that net! is hueristic.

we use il here and this is the network table (from /sys/src/cmd/ndb/cs.c) 
that works for us.  i'm not sure why Nilfast was eliminated from the current
table, but the current ndb/cs doesn't work for us.

i would suspect that tcp is timing out in an antisocial way and not allowing
the next element of the network table to be processed.

- erik

/*
>  *  net doesn't apply to (r)udp, icmp(v6), or telco (for speed)
 */
Network network[] = {
[Nilfast]       { "il",         iplookup,       iptrans,        0, 1 },
[Ntcp]          { "tcp",        iplookup,       iptrans,        0, 0 },
[Nil]           { "il",         iplookup,       iptrans,        0, 0 },
[Nudp]          { "udp",        iplookup,       iptrans,        1, 0 },
[Nicmp]         { "icmp",       iplookup,       iptrans,        1, 0 },
[Nicmpv6]       { "icmpv6",     iplookup,       iptrans,        1, 0 },
[Nrudp]         { "rudp",       iplookup,       iptrans,        1, 0 },
[Ntelco]        { "telco",      telcolookup,    telcotrans,     1, 0 },
                { 0 },
};

Reply via email to