首页 > 其他分享 >github无法访问的问题

github无法访问的问题

时间:2024-03-23 22:34:58浏览次数:18  
标签:github 无法访问 域名 问题 地址 ip6 com nslookup

Windows10

通过nslookup命令获取GitHub域名服务器地址,然后ping该地址

nslookup github.com
ping 域名服务器地址

image

发现20.205.243.166能稳定ping通,但是浏览器却打不开


接着使用管理员身份运行notepad++,然后打开文件C:\Windows\System32\drivers\etc\hosts,在最后一行加上以下代码

域名服务器地址 github.com

image

注意域名服务器地址经常会改变,不一定要按照教程的地址来,然后保存,关闭文件


这时关闭浏览器,重新打开浏览器再输入github.com,就能正常打开了

image

Ubuntu20.04

跟Windows一样,Linux也有nslookup命令

nslookup github.com

更新文件/etc/hosts20.205.243.166为此时github主机ip

127.0.0.1	localhost
127.0.1.1	ubuntu
20.205.243.166  github.com

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

这样可以访问GitHub了

标签:github,无法访问,域名,问题,地址,ip6,com,nslookup
From: https://www.cnblogs.com/hywing/p/18091818

相关文章

  • long数据类型跨平台问题
    源代码#include<iostream>intmain(){ std::cout<<"sizeoflong:"<<sizeof(long)<<std::endl; return0;}Windowslong->32位Linuxlong->64位建议跨平台程序尽量采用跨平台库,如Boostnamespaceboost{using::int8_t;......
  • github无法提交代码问题
    问题描述提交代码到个人仓库的时候发现报错,认证失败Usernamefor'https://github.com':hywingPasswordfor'https://[email protected]':remote:SupportforpasswordauthenticationwasremovedonAugust13,2021.remote:Pleaseseehttps://docs.github.com/en/......
  • foxy rviz2 "rviz_common/Time"报错问题
    报错内容Theclassrequiredforthispanel,'rviz_common/Time',couldnotbeloaded.Error:Accordingtotheloadedplugindescriptionstheclassrviz_common/Timewithbaseclasstyperviz_common::Paneldoesnotexist.DeclaredtypesareTeleopPanel......
  • ros2 foxy订阅话题问题
    代码片段这部分代码在galactic版本编译是OK的,可在foxy下编译就出了问题TeleopPanel::TeleopPanel(QWidget*parent):rviz_common::Panel(parent),playRate_(1.0){signalPub_=nh_->create_publisher<std_msgs::msg::Int16>("/pixel/lv/run_signal",5);beginPub_......
  • cmake之find_library使用问题
    附上工程源码demo工程PS:这个工程用于导出库CMakeLists.txtcmake_minimum_required(VERSION3.5)project(demoLANGUAGESCXX)set(CMAKE_INCLUDE_CURRENT_DIRON)set(CMAKE_CXX_STANDARD11)set(CMAKE_CXX_STANDARD_REQUIREDON)add_library(demoSHAREDdemo.cpp......
  • 操作系统&进程——面试高频问题
    一.概念  一个程序运行起来,就会对应一个进程(process),进程也是系统分配的基本单位。 二.PCB的几个核心属性 1.pid进程标识符.                  同一个机器,同一个时刻,进程id一定是不同.`   2.内存指针      进程运行时......
  • Offer必备算法15_简单多问题dp_八道力扣题(打家劫舍+买卖股票)
    目录①力扣LCR089.打家劫舍解析代码②力扣213.打家劫舍II解析代码③力扣740.删除并获得点数解析代码④力扣LCR091.粉刷房子解析代码⑤力扣309.买卖股票的最佳时机含冷冻期状态机分析解析代码⑥力扣714.买卖股票的最佳时机含手续费状态机分析解析代码⑦......
  • 【华为OD机试】真题A卷-连接器问题(C++)
    一、题目描述【华为OD机试】真题A卷-连接器问题(C++)题目描述:有一组区间[a0,b0],[a1,b1],…(a,b表示起点,终点),区间有可能重叠、相邻,重叠或相邻则可以合并为更大的区间;给定一组连接器[x1,x2,x3,…](x表示连接器的最大可连接长度,即x>=gap),可用于将分离的区间连接起来,但两个分离区间之间只......
  • 【蓝桥杯·dp问题】砝码称重
    此题易联想到使用动态规划解决,dp[i][j]状态表示是否存在前i个砝码中选取重量为j的方案。砝码重量分三种情况:1.砝码本身的重量(即一个砝码就可以表示的重量)2.放在同侧3.放在异侧注意重量为0的情况不记作方案数。#include<cstdio>#include<cstring>#include<iostream......
  • 自动同步 Github 仓库到 Gitee 仓库
    自动同步你的Github仓库到Gitee仓库个人公私钥的创建ssh-keygen-ted25519-C"GiteeSSHKeyforGithubAction"输出,如:Generatingpublic/privateed25519keypair.Enterfileinwhichtosavethekey(/home/git/.ssh/id_ed25519):#输入保存路径Enterpassphra......