找回密码
 立即注册
查看: 617|回复: 0

[后端] 用Go实现Ping操作

[复制链接]

279

主题

0

回帖

964

积分

超级版主

积分
964
发表于 2024-5-18 20:08:38 | 显示全部楼层 |阅读模式
本帖最后由 Shaw0xyz 于 2024-5-18 20:12 编辑

在Go语言中实现一个Ping操作可以通过使用ICMP协议。Go的标准库中没有直接提供Ping操作的库,但可以使用第三方库,例如`golang.org/x/net/icmp`和`golang.org/x/net/ipv4`,来实现。

以下是一个简单的示例,演示如何在Go中实现Ping操作:
  1. package main

  2. import (
  3.     "encoding/binary"
  4.     "fmt"
  5.     "golang.org/x/net/icmp"
  6.     "golang.org/x/net/ipv4"
  7.     "net"
  8.     "os"
  9.     "time"
  10. )

  11. func main() {
  12.     if len(os.Args) != 2 {
  13.         fmt.Printf("Usage: %s <host>\n", os.Args[0])
  14.         os.Exit(1)
  15.     }

  16.     target := os.Args[1]
  17.     addr, err := net.ResolveIPAddr("ip4", target)
  18.     if err != nil {
  19.         fmt.Printf("Failed to resolve %s: %v\n", target, err)
  20.         os.Exit(1)
  21.     }

  22.     conn, err := net.DialIP("ip4:icmp", nil, addr)
  23.     if err != nil {
  24.         fmt.Printf("Failed to dial: %v\n", err)
  25.         os.Exit(1)
  26.     }
  27.     defer conn.Close()

  28.     // Create ICMP Echo Request packet
  29.     icmpEcho := icmp.Message{
  30.         Type: ipv4.ICMPTypeEcho,
  31.         Code: 0,
  32.         Body: &icmp.Echo{
  33.             ID:   os.Getpid() & 0xffff,
  34.             Seq:  1,
  35.             Data: []byte("PING"),
  36.         },
  37.     }

  38.     // Serialize ICMP message
  39.     msg, err := icmpEcho.Marshal(nil)
  40.     if err != nil {
  41.         fmt.Printf("Failed to marshal ICMP message: %v\n", err)
  42.         os.Exit(1)
  43.     }

  44.     // Send ICMP Echo Request
  45.     start := time.Now()
  46.     _, err = conn.Write(msg)
  47.     if err != nil {
  48.         fmt.Printf("Failed to send ICMP message: %v\n", err)
  49.         os.Exit(1)
  50.     }

  51.     // Receive ICMP Echo Reply
  52.     reply := make([]byte, 1500)
  53.     err = conn.SetReadDeadline(time.Now().Add(10 * time.Second))
  54.     if err != nil {
  55.         fmt.Printf("Failed to set read deadline: %v\n", err)
  56.         os.Exit(1)
  57.     }

  58.     n, err := conn.Read(reply)
  59.     if err != nil {
  60.         fmt.Printf("Failed to read ICMP message: %v\n", err)
  61.         os.Exit(1)
  62.     }

  63.     duration := time.Since(start)

  64.     // Parse ICMP message
  65.     parsedMsg, err := icmp.ParseMessage(1, reply[:n])
  66.     if err != nil {
  67.         fmt.Printf("Failed to parse ICMP message: %v\n", err)
  68.         os.Exit(1)
  69.     }

  70.     switch parsedMsg.Type {
  71.     case ipv4.ICMPTypeEchoReply:
  72.         echoReply, ok := parsedMsg.Body.(*icmp.Echo)
  73.         if !ok {
  74.             fmt.Println("Received unexpected ICMP message body")
  75.             os.Exit(1)
  76.         }
  77.         fmt.Printf("Received ICMP Echo Reply from %s: id=%d seq=%d time=%v\n", addr, echoReply.ID, echoReply.Seq, duration)
  78.     default:
  79.         fmt.Printf("Received unexpected ICMP message type %v\n", parsedMsg.Type)
  80.     }
  81. }
复制代码



运行此代码的步骤:

1. 安装依赖包:
  1.     go get golang.org/x/net/icmp
  2.     go get golang.org/x/net/ipv4
复制代码


2. 保存代码到一个文件,如`ping.go`。

3. 运行代码:
  
  1. go run ping.go example.com
复制代码


代码说明:

1. 解析目标地址:通过`net.ResolveIPAddr`解析目标主机的IP地址。
2. 建立连接:使用`net.DialIP`建立到目标主机的ICMP连接。
3. 构造ICMP请求:创建一个ICMP Echo Request消息,并将其序列化为字节数组。
4. 发送请求:通过连接发送ICMP Echo Request。
5. 接收响应:读取从目标主机返回的ICMP Echo Reply,并解析响应消息。
6. 显示结果:显示响应的详细信息,包括响应时间。

这个示例演示了如何使用Go语言进行Ping操作,通过发送ICMP Echo Request并接收Echo Reply来测量目标主机的响应时间。
荔枝学姐爱吃荔枝!
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

联系站长|Archiver|手机版|小黑屋|主机论坛

GMT+8, 2025-4-4 13:20 , Processed in 0.063381 second(s), 24 queries .

Powered by 主机论坛 HostSsss.Com

HostSsss.Com

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