LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 1411|回复: 4

在龙芯上编译的apache启动后无法访问

[复制链接]
发表于 2010-10-15 19:55:32 | 显示全部楼层 |阅读模式
我编译了apache2.2.16到我的机器上,配置文件是默认的,我只修改了ServerName为我的ip地址。可是启动后无法打开页面。

编译的参数为--enable-mods-shared=all --enable-ssl -with-mpm=worker,开启使用了ssl,并编译全部模块,使用worker为多路处理模块

使用lynx查看显示127.0.0.1或是本机ip172.16.3.4都无法连接。

  1. lynx 127.0.0.1

  2. Looking up 127.0.0.1 first
  3. Looking up 127.0.0.1
  4. Making HTTP connection to 127.0.0.1
  5. Sending HTTP request.
  6. HTTP request sent; waiting for response.
  7. Alert!: Unexpected network read error; connection aborted.
  8. Can't Access `http://127.0.0.1/'
  9. Alert!: Unable to access document.

  10. lynx: Can't access startfile
复制代码


使用netstat查看时看不到apache已经在监听80端口

#netstat -an
  1. Active Internet connections (servers and established)
  2. Proto Recv-Q Send-Q Local Address           Foreign Address         State
  3. tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN
  4. tcp        0      0 172.16.3.4:22           172.16.3.119:3286       ESTABLISHED
  5. tcp        0     52 172.16.3.4:22           172.16.3.119:3242       ESTABLISHED
  6. udp        0      0 0.0.0.0:514             0.0.0.0:*
  7. Active UNIX domain sockets (servers and established)
  8. Proto RefCnt Flags       Type       State         I-Node Path
  9. unix  2      [ ACC ]     STREAM     LISTENING     16146  /var/run/cgisock.14724
  10. unix  2      [ ]         DGRAM                    118    @/org/kernel/udev/udevd
  11. unix  2      [ ]         DGRAM                    1217   /dev/log
  12. unix  3      [ ]         DGRAM                    123
  13. unix  3      [ ]         DGRAM                    122
复制代码


但是使用ss查看端口时可以看到apache已经在监听80端口并有172.16.3.119的连接连入。
  1. #ss -a -A tcp,udp
  2. Netid  State      Recv-Q Send-Q                          Local Address:Port                              Peer Address:Port
  3. udp    UNCONN     0      0                                           *:syslog                                       *:*
  4. udp    UNCONN     0      0                                          :::syslog                                      :::*
  5. tcp    LISTEN     0      128                                        :::apache                                      :::*
  6. tcp    LISTEN     0      128                                        :::ssh                                         :::*
  7. tcp    LISTEN     0      128                                         *:ssh                                          *:*
  8. tcp    ESTAB      0      0                                  172.16.3.4:ssh                               172.16.3.119:e-net
  9. tcp    TIME-WAIT  0      0                           ::ffff:172.16.3.4:apache                     ::ffff:172.16.3.119:gf
  10. tcp    ESTAB      0      0                                  172.16.3.4:ssh                               172.16.3.119:sdp-id-port
复制代码


使用Nmap扫描时也可以看到80号的端口启动了。

  1. # nmap  172.16.3.4 -v

  2. Starting Nmap 4.62 ( http://nmap.org ) at 2010-10-15 11:51 CST
  3. Initiating ARP Ping Scan at 11:51
  4. Scanning 172.16.3.4 [1 port]
  5. Completed ARP Ping Scan at 11:51, 0.00s elapsed (1 total hosts)
  6. Initiating Parallel DNS resolution of 1 host. at 11:51
  7. Completed Parallel DNS resolution of 1 host. at 11:51, 0.00s elapsed
  8. Initiating SYN Stealth Scan at 11:51
  9. Scanning 172.16.3.4 [1715 ports]
  10. Discovered open port 80/tcp on 172.16.3.4
  11. Discovered open port 22/tcp on 172.16.3.4
  12. Completed SYN Stealth Scan at 11:51, 0.10s elapsed (1715 total ports)
  13. Host 172.16.3.4 appears to be up ... good.
  14. Interesting ports on 172.16.3.4:
  15. Not shown: 1713 closed ports
  16. PORT   STATE SERVICE
  17. 22/tcp open  ssh
  18. 80/tcp open  http
  19. MAC Address: 00:23:9E:00:03:1B (Unknown)

  20. Read data files from: /usr/share/nmap
  21. Nmap done: 1 IP address (1 host up) scanned in 0.486 seconds
  22.            Raw packets sent: 1716 (75.502KB) | Rcvd: 1716 (78.932KB)
复制代码



在apache启动出错日志中可以看到apache好像工作是正常的。
  1. #cat /var/log/apache/error_log
  2. [Fri Oct 15 03:52:54 2010] [info] mod_unique_id: using ip addr 127.0.0.1
  3. [Fri Oct 15 03:52:55 2010] [notice] Digest: generating secret for digest authentication ...
  4. [Fri Oct 15 03:52:55 2010] [notice] Digest: done
  5. [Fri Oct 15 03:52:55 2010] [info] mod_unique_id: using ip addr 127.0.0.1
  6. [Fri Oct 15 03:52:56 2010] [notice] Apache/2.2.16 (Unix) DAV/2 configured -- resuming normal operations
  7. [Fri Oct 15 03:52:56 2010] [info] Server built: Oct 15 2010 01:14:25
  8. [Fri Oct 15 03:52:56 2010] [debug] worker.c(1757): AcceptMutex: sysvsem (default: sysvsem)
复制代码
发表于 2010-10-19 11:29:09 | 显示全部楼层
把你的配置文件httpd.conf贴上来 看看
回复 支持 反对

使用道具 举报

 楼主| 发表于 2010-10-21 10:46:46 | 显示全部楼层
为了测试我去掉了所有能去掉的模块,但是还是不行

  1. #
  2. # This is the main Apache HTTP server configuration file.  It contains the
  3. # configuration directives that give the server its instructions.
  4. # See <URL:http://httpd.apache.org/docs/2.2> for detailed information.
  5. # In particular, see
  6. # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
  7. # for a discussion of each configuration directive.
  8. #
  9. # Do NOT simply read the instructions in here without understanding
  10. # what they do.  They're here only as hints or reminders.  If you are unsure
  11. # consult the online docs. You have been warned.  
  12. #
  13. # Configuration and logfile names: If the filenames you specify for many
  14. # of the server's control files begin with "/" (or "drive:/" for Win32), the
  15. # server will use that explicit path.  If the filenames do *not* begin
  16. # with "/", the value of ServerRoot is prepended -- so "/var/log/apache/foo_log"
  17. # with ServerRoot set to "/usr" will be interpreted by the
  18. # server as "/usr//var/log/apache/foo_log".
  19. #
  20. # ServerRoot: The top of the directory tree under which the server's
  21. # configuration, error, and log files are kept.
  22. #
  23. # Do not add a slash at the end of the directory path.  If you point
  24. # ServerRoot at a non-local disk, be sure to point the LockFile directive
  25. # at a local disk.  If you wish to share the same ServerRoot for multiple
  26. # httpd daemons, you will need to change at least LockFile and PidFile.
  27. #
  28. ServerRoot "/usr"
  29. #
  30. # Listen: Allows you to bind Apache to specific IP addresses and/or
  31. # ports, instead of the default. See also the <VirtualHost>
  32. # directive.
  33. #
  34. # Change this to Listen on specific IP addresses as shown below to
  35. # prevent Apache from glomming onto all bound IP addresses.
  36. #
  37. #Listen 12.34.56.78:80
  38. Listen 80
  39. #
  40. # Dynamic Shared Object (DSO) Support
  41. #
  42. # To be able to use the functionality of a module which was built as a DSO you
  43. # have to place corresponding `LoadModule' lines at this location so the
  44. # directives contained in it are actually available _before_ they are used.
  45. # Statically compiled modules (those listed by `httpd -l') do not need
  46. # to be loaded here.
  47. #
  48. # Example:
  49. # LoadModule foo_module modules/mod_foo.so
  50. #
  51. #LoadModule authn_file_module lib/apache/mod_authn_file.so
  52. #LoadModule authn_dbm_module lib/apache/mod_authn_dbm.so
  53. #LoadModule authn_anon_module lib/apache/mod_authn_anon.so
  54. #LoadModule authn_dbd_module lib/apache/mod_authn_dbd.so
  55. #LoadModule authn_default_module lib/apache/mod_authn_default.so
  56. LoadModule authz_host_module lib/apache/mod_authz_host.so
  57. #LoadModule authz_groupfile_module lib/apache/mod_authz_groupfile.so
  58. #LoadModule authz_user_module lib/apache/mod_authz_user.so
  59. #LoadModule authz_dbm_module lib/apache/mod_authz_dbm.so
  60. #LoadModule authz_owner_module lib/apache/mod_authz_owner.so
  61. #LoadModule authz_default_module lib/apache/mod_authz_default.so
  62. #LoadModule auth_basic_module lib/apache/mod_auth_basic.so
  63. #LoadModule auth_digest_module lib/apache/mod_auth_digest.so
  64. #LoadModule dbd_module lib/apache/mod_dbd.so
  65. #LoadModule dumpio_module lib/apache/mod_dumpio.so
  66. #LoadModule reqtimeout_module lib/apache/mod_reqtimeout.so
  67. #LoadModule ext_filter_module lib/apache/mod_ext_filter.so
  68. #LoadModule include_module lib/apache/mod_include.so
  69. #LoadModule filter_module lib/apache/mod_filter.so
  70. #LoadModule substitute_module lib/apache/mod_substitute.so
  71. #LoadModule deflate_module lib/apache/mod_deflate.so
  72. #LoadModule log_config_module lib/apache/mod_log_config.so
  73. #LoadModule log_forensic_module lib/apache/mod_log_forensic.so
  74. #LoadModule logio_module lib/apache/mod_logio.so
  75. #LoadModule env_module lib/apache/mod_env.so
  76. #LoadModule mime_magic_module lib/apache/mod_mime_magic.so
  77. #LoadModule cern_meta_module lib/apache/mod_cern_meta.so
  78. #LoadModule expires_module lib/apache/mod_expires.so
  79. #LoadModule headers_module lib/apache/mod_headers.so
  80. #LoadModule ident_module lib/apache/mod_ident.so
  81. #LoadModule usertrack_module lib/apache/mod_usertrack.so
  82. #LoadModule unique_id_module lib/apache/mod_unique_id.so
  83. #LoadModule setenvif_module lib/apache/mod_setenvif.so
  84. #LoadModule version_module lib/apache/mod_version.so
  85. #LoadModule ssl_module lib/apache/mod_ssl.so
  86. #LoadModule mime_module lib/apache/mod_mime.so
  87. #LoadModule dav_module lib/apache/mod_dav.so
  88. #LoadModule status_module lib/apache/mod_status.so
  89. #LoadModule autoindex_module lib/apache/mod_autoindex.so
  90. #LoadModule asis_module lib/apache/mod_asis.so
  91. #LoadModule info_module lib/apache/mod_info.so
  92. #LoadModule cgi_module lib/apache/mod_cgi.so
  93. #LoadModule dav_fs_module lib/apache/mod_dav_fs.so
  94. #LoadModule vhost_alias_module lib/apache/mod_vhost_alias.so
  95. #LoadModule negotiation_module lib/apache/mod_negotiation.so
  96. #LoadModule dir_module lib/apache/mod_dir.so
  97. #LoadModule imagemap_module lib/apache/mod_imagemap.so
  98. #LoadModule actions_module lib/apache/mod_actions.so
  99. #LoadModule speling_module lib/apache/mod_speling.so
  100. #LoadModule userdir_module lib/apache/mod_userdir.so
  101. #LoadModule alias_module lib/apache/mod_alias.so
  102. #LoadModule rewrite_module lib/apache/mod_rewrite.so
  103. <IfModule !mpm_netware_module>
  104. <IfModule !mpm_winnt_module>
  105. #
  106. # If you wish httpd to run as a different user or group, you must run
  107. # httpd as root initially and it will switch.  
  108. #
  109. # User/Group: The name (or #number) of the user/group to run httpd as.
  110. # It is usually good practice to create a dedicated user and group for
  111. # running httpd, as with most system services.
  112. #
  113. User apache
  114. Group apache
  115. </IfModule>
  116. </IfModule>
  117. # 'Main' server configuration
  118. #
  119. # The directives in this section set up the values used by the 'main'
  120. # server, which responds to any requests that aren't handled by a
  121. # <VirtualHost> definition.  These values also provide defaults for
  122. # any <VirtualHost> containers you may define later in the file.
  123. #
  124. # All of these directives may appear inside <VirtualHost> containers,
  125. # in which case these default settings will be overridden for the
  126. # virtual host being defined.
  127. #
  128. #
  129. # ServerAdmin: Your address, where problems with the server should be
  130. # e-mailed.  This address appears on some server-generated pages, such
  131. # as error documents.  e.g. admin@your-domain.com
  132. #
  133. ServerAdmin you@example.com
  134. #
  135. # ServerName gives the name and port that the server uses to identify itself.
  136. # This can often be determined automatically, but we recommend you specify
  137. # it explicitly to prevent problems during startup.
  138. #
  139. # If your host doesn't have a registered DNS name, enter its IP address here.
  140. #
  141. ServerName 172.16.3.4
  142. #
  143. # DocumentRoot: The directory out of which you will serve your
  144. # documents. By default, all requests are taken from this directory, but
  145. # symbolic links and aliases may be used to point to other locations.
  146. #
  147. DocumentRoot "/srv/www/htdocs"
  148. #
  149. # Each directory to which Apache has access can be configured with respect
  150. # to which services and features are allowed and/or disabled in that
  151. # directory (and its subdirectories).
  152. #
  153. # First, we configure the "default" to be a very restrictive set of
  154. # features.  
  155. #
  156. <Directory />
  157.     Options FollowSymLinks
  158.     AllowOverride None
  159.     Order deny,allow
  160.     Deny from all
  161. </Directory>
  162. #
  163. # Note that from this point forward you must specifically allow
  164. # particular features to be enabled - so if something's not working as
  165. # you might expect, make sure that you have specifically enabled it
  166. # below.
  167. #
  168. #
  169. # This should be changed to whatever you set DocumentRoot to.
  170. #
  171. <Directory "/srv/www/htdocs">
  172.     #
  173.     # Possible values for the Options directive are "None", "All",
  174.     # or any combination of:
  175.     #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
  176.     #
  177.     # Note that "MultiViews" must be named *explicitly* --- "Options All"
  178.     # doesn't give it to you.
  179.     #
  180.     # The Options directive is both complicated and important.  Please see
  181.     # http://httpd.apache.org/docs/2.2/mod/core.html#options
  182.     # for more information.
  183.     #
  184.     Options Indexes FollowSymLinks
  185.     #
  186.     # AllowOverride controls what directives may be placed in .htaccess files.
  187.     # It can be "All", "None", or any combination of the keywords:
  188.     #   Options FileInfo AuthConfig Limit
  189.     #
  190.     AllowOverride None
  191.     #
  192.     # Controls who can get stuff from this server.
  193.     #
  194.     Order allow,deny
  195.     Allow from all
  196. </Directory>
  197. #
  198. # DirectoryIndex: sets the file that Apache will serve if a directory
  199. # is requested.
  200. #
  201. <IfModule dir_module>
  202.     DirectoryIndex index.html
  203. </IfModule>
  204. #
  205. # The following lines prevent .htaccess and .htpasswd files from being
  206. # viewed by Web clients.
  207. #
  208. <FilesMatch "^\.ht">
  209.     Order allow,deny
  210.     Deny from all
  211.     Satisfy All
  212. </FilesMatch>
  213. #
  214. # ErrorLog: The location of the error log file.
  215. # If you do not specify an ErrorLog directive within a <VirtualHost>
  216. # container, error messages relating to that virtual host will be
  217. # logged here.  If you *do* define an error logfile for a <VirtualHost>
  218. # container, that host's errors will be logged there and not here.
  219. #
  220. ErrorLog "/var/log/apache/error_log"
  221. #
  222. # LogLevel: Control the number of messages logged to the error_log.
  223. # Possible values include: debug, info, notice, warn, error, crit,
  224. # alert, emerg.
  225. #
  226. LogLevel debug
  227. <IfModule log_config_module>
  228.     #
  229.     # The following directives define some format nicknames for use with
  230.     # a CustomLog directive (see below).
  231.     #
  232.     LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i"" combined
  233.     LogFormat "%h %l %u %t "%r" %>s %b" common
  234.     <IfModule logio_module>
  235.       # You need to enable mod_logio.c to use %I and %O
  236.       LogFormat "%h %l %u %t "%r" %>s %b "%{Referer}i" "%{User-Agent}i" %I %O" combinedio
  237.     </IfModule>
  238.     #
  239.     # The location and format of the access logfile (Common Logfile Format).
  240.     # If you do not define any access logfiles within a <VirtualHost>
  241.     # container, they will be logged here.  Contrariwise, if you *do*
  242.     # define per-<VirtualHost> access logfiles, transactions will be
  243.     # logged therein and *not* in this file.
  244.     #
  245.     CustomLog "/var/log/apache/access_log" common
  246.     #
  247.     # If you prefer a logfile with access, agent, and referer information
  248.     # (Combined Logfile Format) you can use the following directive.
  249.     #
  250.     #CustomLog "/var/log/apache/access_log" combined
  251. </IfModule>
  252. <IfModule alias_module>
  253.     #
  254.     # Redirect: Allows you to tell clients about documents that used to
  255.     # exist in your server's namespace, but do not anymore. The client
  256.     # will make a new request for the document at its new location.
  257.     # Example:
  258.     # Redirect permanent /foo http://www.example.com/bar
  259.     #
  260.     # Alias: Maps web paths into filesystem paths and is used to
  261.     # access content that does not live under the DocumentRoot.
  262.     # Example:
  263.     # Alias /webpath /full/filesystem/path
  264.     #
  265.     # If you include a trailing / on /webpath then the server will
  266.     # require it to be present in the URL.  You will also likely
  267.     # need to provide a <Directory> section to allow access to
  268.     # the filesystem path.
  269.     #
  270.     # ScriptAlias: This controls which directories contain server scripts.
  271.     # ScriptAliases are essentially the same as Aliases, except that
  272.     # documents in the target directory are treated as applications and
  273.     # run by the server when requested rather than as documents sent to the
  274.     # client.  The same rules about trailing "/" apply to ScriptAlias
  275.     # directives as to Alias.
  276.     #
  277.     ScriptAlias /cgi-bin/ "/srv/www/cgi-bin/"
  278. </IfModule>
  279. <IfModule cgid_module>
  280.     #
  281.     # ScriptSock: On threaded servers, designate the path to the UNIX
  282.     # socket used to communicate with the CGI daemon of mod_cgid.
  283.     #
  284.     #Scriptsock /var/run/cgisock
  285. </IfModule>
  286. #
  287. # "/srv/www/cgi-bin" should be changed to whatever your ScriptAliased
  288. # CGI directory exists, if you have that configured.
  289. #
  290. <Directory "/srv/www/cgi-bin">
  291.     AllowOverride None
  292.     Options None
  293.     Order allow,deny
  294.     Allow from all
  295. </Directory>
  296. #
  297. # DefaultType: the default MIME type the server will use for a document
  298. # if it cannot otherwise determine one, such as from filename extensions.
  299. # If your server contains mostly text or HTML documents, "text/plain" is
  300. # a good value.  If most of your content is binary, such as applications
  301. # or images, you may want to use "application/octet-stream" instead to
  302. # keep browsers from trying to display binary files as though they are
  303. # text.
  304. #
  305. DefaultType text/plain
  306. <IfModule mime_module>
  307.     #
  308.     # TypesConfig points to the file containing the list of mappings from
  309.     # filename extension to MIME-type.
  310.     #
  311.     TypesConfig /etc/apache/mime.types
  312.     #
  313.     # AddType allows you to add to or override the MIME configuration
  314.     # file specified in TypesConfig for specific file types.
  315.     #
  316.     #AddType application/x-gzip .tgz
  317.     #
  318.     # AddEncoding allows you to have certain browsers uncompress
  319.     # information on the fly. Note: Not all browsers support this.
  320.     #
  321.     #AddEncoding x-compress .Z
  322.     #AddEncoding x-gzip .gz .tgz
  323.     #
  324.     # If the AddEncoding directives above are commented-out, then you
  325.     # probably should define those extensions to indicate media types:
  326.     #
  327.     AddType application/x-compress .Z
  328.     AddType application/x-gzip .gz .tgz
  329.     #
  330.     # AddHandler allows you to map certain file extensions to "handlers":
  331.     # actions unrelated to filetype. These can be either built into the server
  332.     # or added with the Action directive (see below)
  333.     #
  334.     # To use CGI scripts outside of ScriptAliased directories:
  335.     # (You will also need to add "ExecCGI" to the "Options" directive.)
  336.     #
  337.     #AddHandler cgi-script .cgi
  338.     # For type maps (negotiated resources):
  339.     #AddHandler type-map var
  340.     #
  341.     # Filters allow you to process content before it is sent to the client.
  342.     #
  343.     # To parse .shtml files for server-side includes (SSI):
  344.     # (You will also need to add "Includes" to the "Options" directive.)
  345.     #
  346.     #AddType text/html .shtml
  347.     #AddOutputFilter INCLUDES .shtml
  348. </IfModule>
  349. #
  350. # The mod_mime_magic module allows the server to use various hints from the
  351. # contents of the file itself to determine its type.  The MIMEMagicFile
  352. # directive tells the module where the hint definitions are located.
  353. #
  354. #MIMEMagicFile /etc/apache/magic
  355. #
  356. # Customizable error responses come in three flavors:
  357. # 1) plain text 2) local redirects 3) external redirects
  358. #
  359. # Some examples:
  360. #ErrorDocument 500 "The server made a boo boo."
  361. #ErrorDocument 404 /missing.html
  362. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
  363. #ErrorDocument 402 http://www.example.com/subscription_info.html
  364. #
  365. #
  366. # EnableMMAP and EnableSendfile: On systems that support it,
  367. # memory-mapping or the sendfile syscall is used to deliver
  368. # files.  This usually improves server performance, but must
  369. # be turned off when serving from networked-mounted
  370. # filesystems or if support for these functions is otherwise
  371. # broken on your system.
  372. #
  373. #EnableMMAP off
  374. #EnableSendfile off
  375. # Supplemental configuration
  376. #
  377. # The configuration files in the /etc/apache/extra/ directory can be
  378. # included to add extra features or to modify the default configuration of
  379. # the server, or you may simply copy their contents here and change as
  380. # necessary.
  381. # Server-pool management (MPM specific)
  382. #Include /etc/apache/extra/httpd-mpm.conf
  383. # Multi-language error messages
  384. #Include /etc/apache/extra/httpd-multilang-errordoc.conf
  385. # Fancy directory listings
  386. #Include /etc/apache/extra/httpd-autoindex.conf
  387. # Language settings
  388. #Include /etc/apache/extra/httpd-languages.conf
  389. # User home directories
  390. #Include /etc/apache/extra/httpd-userdir.conf
  391. # Real-time info on requests and configuration
  392. #Include /etc/apache/extra/httpd-info.conf
  393. # Virtual hosts
  394. #Include /etc/apache/extra/httpd-vhosts.conf
  395. # Local access to the Apache HTTP Server Manual
  396. #Include /etc/apache/extra/httpd-manual.conf
  397. # Distributed authoring and versioning (WebDAV)
  398. #Include /etc/apache/extra/httpd-dav.conf
  399. # Various default settings
  400. #Include /etc/apache/extra/httpd-default.conf
  401. # Secure (SSL/TLS) connections
  402. #Include /etc/apache/extra/httpd-ssl.conf
  403. #
  404. # Note: The following must must be present to support
  405. #       starting without SSL on platforms with no /dev/random equivalent
  406. #       but a statically compiled-in mod_ssl.
  407. #
  408. #<IfModule ssl_module>
  409. #SSLRandomSeed startup builtin
  410. #SSLRandomSeed connect builtin
  411. #</IfModule>
复制代码
回复 支持 反对

使用道具 举报

发表于 2010-10-21 19:17:42 | 显示全部楼层

ipv6
回复 支持 反对

使用道具 举报

 楼主| 发表于 2010-10-22 09:06:34 | 显示全部楼层
我一开始也觉得是ipv6的问题,可是后来我先是禁止内核的ipv6,然后重新编译了apache加上了--disable-ipv6参数,可是还是连不上,总是无法打开页面
  1. #ss -a -A tcp,udp
  2. Netid  State      Recv-Q Send-Q                              Local Address:Port                                  Peer Address:Port
  3. udp    UNCONN     0      0                                               *:syslog                                           *:*
  4. tcp    LISTEN     0      128                                             *:apache                                           *:*
  5. tcp    LISTEN     0      128                                             *:ssh                                              *:*
  6. tcp    TIME-WAIT  0      0                                      172.16.3.4:apache                                172.16.3.119:aairnet-1
  7. tcp    TIME-WAIT  0      0                                      172.16.3.4:apache                                172.16.3.119:sharp-server
  8. tcp    ESTAB      0      0                                      172.16.3.4:ssh                                   172.16.3.119:int-rcv-cntrl
  9. tcp    ESTAB      0      180                                    172.16.3.4:ssh                                   172.16.3.119:start-network
复制代码
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表