zoukankan      html  css  js  c++  java
  • Hosts文件的使用

    hosts文件是什么?在哪里?
    hosts文件:系统文件,可以记事本打开并编辑。
    一般用于域名到ip地址的解析。当用户在浏览器中输入网络的域名时,系统首先会自动从hosts文件中找到对应的ip地址,一旦找到,将用该ip地址打开对应的网页。如果没有找到,则系统会在将网址提交到DMS域名解析服务器进行ip地址的解析。
    Windows系统hosts位于 C:WindowsSystem32driversetchosts(需要管理员权限)
    Android(安卓)系统hosts位于 /system/etc/hosts(需要root)

    windows的默认hosts文件

    # Copyright (c) 1993-2009 Microsoft Corp.
    #
    # This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
    #
    # This file contains the mappings of IP addresses to host names. Each
    # entry should be kept on an individual line. The IP address should
    # be placed in the first column followed by the corresponding host name.
    # The IP address and the host name should be separated by at least one
    # space.
    #
    # Additionally, comments (such as these) may be inserted on individual
    # lines or following the machine name denoted by a '#' symbol.
    #
    # For example:
    #
    # 102.54.94.97 rhino.acme.com # source server
    # 38.25.63.10 x.acme.com # x client host
    
    # localhost name resolution is handled within DNS itself.
    #    127.0.0.1 localhost
    #    ::1 localhost

    修改hosts后生效的方法

    cmd中执行

    ipconfig /flushdns

    当然重启系统等措施也行。

  • 相关阅读:
    excel记录20191211
    oracle记录20191210
    linux查进程,杀进程,改权限,vim
    oracle 记录20191209
    PYTHON之路,线程
    PYTHON的前端部分
    Nginx安装及配置反向代理
    springboot多模块项目,在tomcat下运行
    一键安装和配置Java环境
    json转换csv并进行下载
  • 原文地址:https://www.cnblogs.com/zadomn0920/p/6159684.html
Copyright © 2011-2022 走看看