静态路由中的优先级?

静态路由中的优先级?

我有两条具有不同网关的默认路由:

# netstat -nr

Routing Table: IPv4
  Destination           Gateway           Flags  Ref     Use     Interface
-------------------- -------------------- ----- ----- ---------- ---------
default              10.150.19.65         UG        1       3217

default              10.150.16.66         UG        1         47

我怎样才能让服务器将 16.66 作为 19.65 的优先选项?第二件事,我正在尝试查找包含静态路由的系统文件。

知道:

# more /etc/release
                    Oracle Solaris 10 8/11 s10x_u10wos_17b X86
  Copyright (c) 1983, 2011, Oracle and/or its affiliates. All rights reserved.
                            Assembled 23 August 2011

答案1

Unix 通常不允许两个默认网关(主要是因为内核无法知道使用哪一个)

删除当前路线使用

route delete default 10.150.19.65

重启后它将无法继续存在,下一步是编辑/etc/gatways

按照http://www.cyberciti.biz/faq/howto-configuring-solaris-unix-static-routes/

相关内容