亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

  免費(fèi)注冊(cè) 查看新帖 |

Chinaunix

  平臺(tái) 論壇 博客 文庫
最近訪問板塊 發(fā)新帖
查看: 2699 | 回復(fù): 6
打印 上一主題 下一主題

[通信方式] 內(nèi)核路由表怎么會(huì)有IP地址全0的缺省網(wǎng)關(guān),刪都刪不掉,沒法通信 [復(fù)制鏈接]

論壇徽章:
9
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-02-13 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-15 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-16 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-18 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-06-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-09 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-15 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-08-18 06:20:00
跳轉(zhuǎn)到指定樓層
1 [收藏(0)] [報(bào)告]
發(fā)表于 2016-08-22 17:22 |只看該作者 |倒序?yàn)g覽
本帖最后由 mordorwww 于 2016-08-22 17:41 編輯

刪都刪不掉,沒法通信


root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
0.0.0.0         1.1.1.50        0.0.0.0         UG    0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~#
root@imx6solosabresd:~#
root@imx6solosabresd:~# root@imx6solosabresd:~# ifconfig
data      Link encap:Ethernet  HWaddr 3A:F7:79:3A:05:3A  
          inet6 addr: fe80::38f7:79ff:fe3a:53a/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

eth0      Link encap:Ethernet  HWaddr 7A:23:29:F8:7A:FE  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:10 errors:0 dropped:0 overruns:0 frame:0
          TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:700 (700.0 B)  TX bytes:700 (700.0 B)

root@imx6solosabresd:~# ifconfig data 1.1.1.3
root@imx6solosabresd:~# ping 1.1.1.5^C
root@imx6solosabresd:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
1.0.0.0         *               255.0.0.0       U     0      0        0 data
root@imx6solosabresd:~# ping 1.1.1.50
PING 1.1.1.50 (1.1.1.50): 56 data bytes
64 bytes from 1.1.1.50: seq=0 ttl=64 time=3.502 ms
^C
--- 1.1.1.50 ping statistics ---
1 packets transmitted, 1 packets received, 0% packet loss
round-trip min/avg/max = 3.502/3.502/3.502 ms
root@imx6solosabresd:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
1.0.0.0         *               255.0.0.0       U     0      0        0 data
root@imx6solosabresd:~#
root@imx6solosabresd:~#
root@imx6solosabresd:~# route add -net 0.0.0.0 netmask 0.0.0.0 gw 1.1.1.5
root@imx6solosabresd:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

default         1.1.1.5         0.0.0.0         UG    0      0        0 data
default         *               0.0.0.0         U     0      0        0 data
1.0.0.0         *               255.0.0.0       U     0      0        0 data
169.254.0.0     *               255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~#
root@imx6solosabresd:~# ping 172.16.20.207
PING 172.16.20.207 (172.16.20.207): 56 data bytes
^C
--- 172.16.20.207 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss
root@imx6solosabresd:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         1.1.1.5         0.0.0.0         UG    0      0        0 data
default         *               0.0.0.0         U     0      0        0 data
1.0.0.0         *               255.0.0.0       U     0      0        0 data
169.254.0.0     *               255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~#
root@imx6solosabresd:~# ifconfig
data      Link encap:Ethernet  HWaddr 3A:F7:79:3A:05:3A  
          inet addr:1.1.1.3  Bcast:1.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::38f7:79ff:fe3a:53a/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:25 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

eth0      Link encap:Ethernet  HWaddr 7A:23:29:F8:7A:FE  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:21 errors:0 dropped:0 overruns:0 frame:0
          TX packets:21 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1644 (1.6 KiB)  TX bytes:1644 (1.6 KiB)

root@imx6solosabresd:~#
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
0.0.0.0         1.1.1.50        0.0.0.0         UG    0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~#


root@imx6solosabresd:~# ifconfig
data      Link encap:Ethernet  HWaddr 62:92:A6:FF:354  
          inet addr:1.1.1.3  Bcast:1.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::6092:a6ff:feff:35d4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:224 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

eth0      Link encap:Ethernet  HWaddr 3A:AA:00:99:4F:18  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:75 errors:0 dropped:0 overruns:0 frame:0
          TX packets:75 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:6160 (6.0 KiB)  TX bytes:6160 (6.0 KiB)

論壇徽章:
20
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2015-08-17 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-16 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-18 06:20:00每日論壇發(fā)貼之星
日期:2016-07-18 06:20:00黑曼巴
日期:2016-12-26 16:00:3215-16賽季CBA聯(lián)賽之江蘇
日期:2017-06-26 11:05:5615-16賽季CBA聯(lián)賽之上海
日期:2017-07-21 18:12:5015-16賽季CBA聯(lián)賽之青島
日期:2017-09-04 17:32:0515-16賽季CBA聯(lián)賽之吉林
日期:2018-03-26 10:02:16程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-15 06:20:0015-16賽季CBA聯(lián)賽之江蘇
日期:2016-07-07 18:37:512015亞冠之薩濟(jì)拖拉機(jī)
日期:2015-08-17 12:21:08
2 [報(bào)告]
發(fā)表于 2016-08-22 17:37 |只看該作者
跟網(wǎng)卡IP一個(gè)網(wǎng)段的路由,不需要nexthop

論壇徽章:
9
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-02-13 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-15 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-16 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-18 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-06-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-09 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-15 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-08-18 06:20:00
3 [報(bào)告]
發(fā)表于 2016-08-22 17:43 |只看該作者
本帖最后由 mordorwww 于 2016-08-22 17:51 編輯
nswcfd 發(fā)表于 2016-08-22 17:37
跟網(wǎng)卡IP一個(gè)網(wǎng)段的路由,不需要nexthop


缺省路由啊,缺省路由沒有網(wǎng)關(guān),缺省路由是直連的!




root@imx6solosabresd:~# ifconfig data 1.1.1.3
root@imx6solosabresd:~#
root@imx6solosabresd:~# ifconfig
data      Link encap:Ethernet  HWaddr 92A:27:BC:04:45  
          inet addr:1.1.1.3  Bcast:1.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::90da:27ff:febc:445/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

eth0      Link encap:Ethernet  HWaddr A6:34:70:AB:51:4F  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:10 errors:0 dropped:0 overruns:0 frame:0
          TX packets:10 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:700 (700.0 B)  TX bytes:700 (700.0 B)

root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
root@imx6solosabresd:~# route add default gw 1.1.1.50
root@imx6solosabresd:~#
root@imx6solosabresd:~# ping 1.1.1.50
PING 1.1.1.50 (1.1.1.50): 56 data bytes
64 bytes from 1.1.1.50: seq=0 ttl=64 time=3.516 ms
64 bytes from 1.1.1.50: seq=1 ttl=64 time=1.959 ms
^C
--- 1.1.1.50 ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max = 1.959/2.737/3.516 ms
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         1.1.1.50        0.0.0.0         UG    0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
root@imx6solosabresd:~#
root@imx6solosabresd:~#
root@imx6solosabresd:~# ping 172.16.20.207
PING 172.16.20.207 (172.16.20.207): 56 data bytes
^C
--- 172.16.20.207 ping statistics ---
3 packets transmitted, 0 packets received, 100% packet loss
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
0.0.0.0         1.1.1.50        0.0.0.0         UG    0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route del default gw 1.1.1.50
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route del default gw 0.0.0.0
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# ifconfig
data      Link encap:Ethernet  HWaddr 92A:27:BC:04:45  
          inet addr:1.1.1.3  Bcast:1.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::90da:27ff:febc:445/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:26 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

eth0      Link encap:Ethernet  HWaddr A6:34:70:AB:51:4F  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:13 errors:0 dropped:0 overruns:0 frame:0
          TX packets:13 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:1036 (1.0 KiB)  TX bytes:1036 (1.0 KiB)

root@imx6solosabresd:~#

root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route del default gw 0.0.0.0
root@imx6solosabresd:~# route del default           
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~# route -n
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
0.0.0.0         0.0.0.0         0.0.0.0         U     0      0        0 data
1.0.0.0         0.0.0.0         255.0.0.0       U     0      0        0 data
169.254.0.0     0.0.0.0         255.255.0.0     U     0      0        0 data
root@imx6solosabresd:~#

論壇徽章:
20
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2015-08-17 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-16 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-18 06:20:00每日論壇發(fā)貼之星
日期:2016-07-18 06:20:00黑曼巴
日期:2016-12-26 16:00:3215-16賽季CBA聯(lián)賽之江蘇
日期:2017-06-26 11:05:5615-16賽季CBA聯(lián)賽之上海
日期:2017-07-21 18:12:5015-16賽季CBA聯(lián)賽之青島
日期:2017-09-04 17:32:0515-16賽季CBA聯(lián)賽之吉林
日期:2018-03-26 10:02:16程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-15 06:20:0015-16賽季CBA聯(lián)賽之江蘇
日期:2016-07-07 18:37:512015亞冠之薩濟(jì)拖拉機(jī)
日期:2015-08-17 12:21:08
4 [報(bào)告]
發(fā)表于 2016-08-27 20:35 |只看該作者
不好意思,看錯(cuò)了。

它是怎么生成的?
看起來是在 ping 172.16.20.207 的過程中后臺(tái)產(chǎn)生的?

論壇徽章:
20
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2015-08-17 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-16 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-18 06:20:00每日論壇發(fā)貼之星
日期:2016-07-18 06:20:00黑曼巴
日期:2016-12-26 16:00:3215-16賽季CBA聯(lián)賽之江蘇
日期:2017-06-26 11:05:5615-16賽季CBA聯(lián)賽之上海
日期:2017-07-21 18:12:5015-16賽季CBA聯(lián)賽之青島
日期:2017-09-04 17:32:0515-16賽季CBA聯(lián)賽之吉林
日期:2018-03-26 10:02:16程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-15 06:20:0015-16賽季CBA聯(lián)賽之江蘇
日期:2016-07-07 18:37:512015亞冠之薩濟(jì)拖拉機(jī)
日期:2015-08-17 12:21:08
5 [報(bào)告]
發(fā)表于 2016-08-27 21:05 |只看該作者
本帖最后由 nswcfd 于 2016-08-27 21:07 編輯

應(yīng)該可以刪除吧,估計(jì)是有后臺(tái)運(yùn)行的其它程序在不斷嘗試添加默認(rèn)路由?
(以類似route add default dev data的形式)

論壇徽章:
20
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2015-08-17 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-16 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-18 06:20:00每日論壇發(fā)貼之星
日期:2016-07-18 06:20:00黑曼巴
日期:2016-12-26 16:00:3215-16賽季CBA聯(lián)賽之江蘇
日期:2017-06-26 11:05:5615-16賽季CBA聯(lián)賽之上海
日期:2017-07-21 18:12:5015-16賽季CBA聯(lián)賽之青島
日期:2017-09-04 17:32:0515-16賽季CBA聯(lián)賽之吉林
日期:2018-03-26 10:02:16程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-15 06:20:0015-16賽季CBA聯(lián)賽之江蘇
日期:2016-07-07 18:37:512015亞冠之薩濟(jì)拖拉機(jī)
日期:2015-08-17 12:21:08
6 [報(bào)告]
發(fā)表于 2016-08-27 21:11 |只看該作者
而且從樓主的命令行里看,執(zhí)行的route del default都成功了,否則會(huì)報(bào)SIOCDELRT:no such process的錯(cuò)誤。

論壇徽章:
9
程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-02-13 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-15 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-16 06:20:00數(shù)據(jù)庫技術(shù)版塊每日發(fā)帖之星
日期:2016-06-18 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-06-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-07-09 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-15 06:20:00IT運(yùn)維版塊每日發(fā)帖之星
日期:2016-07-27 06:20:00程序設(shè)計(jì)版塊每日發(fā)帖之星
日期:2016-08-18 06:20:00
7 [報(bào)告]
發(fā)表于 2016-08-29 08:45 |只看該作者
nswcfd 發(fā)表于 2016-08-27 21:11
而且從樓主的命令行里看,執(zhí)行的route del default都成功了,否則會(huì)報(bào)SIOCDELRT:no such process的錯(cuò)誤。

偶爾能刪成功,一般是刪不掉的
您需要登錄后才可以回帖 登錄 | 注冊(cè)

本版積分規(guī)則 發(fā)表回復(fù)

  

北京盛拓優(yōu)訊信息技術(shù)有限公司. 版權(quán)所有 京ICP備16024965號(hào)-6 北京市公安局海淀分局網(wǎng)監(jiān)中心備案編號(hào):11010802020122 niuxiaotong@pcpop.com 17352615567
未成年舉報(bào)專區(qū)
中國互聯(lián)網(wǎng)協(xié)會(huì)會(huì)員  聯(lián)系我們:huangweiwei@itpub.net
感謝所有關(guān)心和支持過ChinaUnix的朋友們 轉(zhuǎn)載本站內(nèi)容請(qǐng)注明原作者名及出處

清除 Cookies - ChinaUnix - Archiver - WAP - TOP