IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 系统运维 -> DN42 - 接入DN42网络平台 -> 正文阅读

[系统运维]DN42 - 接入DN42网络平台

1 注册AS

参考DN42 - 注册AS.

2 Linux系统配置

在/etc/sysctl.conf配置文件中增加以下配置信息。

# 打开 Linux 内核的数据包路由转发功能
net.ipv4.ip_forward=1
net.ipv6.conf.default.forwarding=1 #
net.ipv6.conf.all.forwarding=1

# 关闭反向路径过滤
net.ipv4.conf.default.rp_filter=0
net.ipv4.conf.all.rp_filter=0

其他配置信息可参考:linux /etc/sysctl.conf 内核参数详解

3 建立隧道:wireguard

3.1 wireguard安装

Ubuntu18.04和Ubuntu20.04:

sudo apt install wireguard

macOS:

brew install wireguard-tools

我在Ubuntu安装中,遇到了报错:

[#] ip link add wg0 type wireguard
RTNETLINK answers: Operation not supported
Unable to access interface: Protocol not supported
[#] ip link delete dev wg0
Cannot find device “wg0”

解决方案就是升级内核并重启:

sudo apt update
sudo apt upgrade
reboot

我的Ubuntu 20.04(装在Mac mini2012上的),原来的内核版本多少我忘了,反正更新完内核之后,开机会进入busybox。网上说是文件系统出了点问题,改一下就行。但是我这键盘咋敲命令都不行。干脆放弃了,改用华为云服务器(过几天闲下来再重装系统吧,麻了)

3.2 寻找AS Peer

有以下几种途径吧(点进链接看看):

  1. DN42 PingFinder
  2. DN42 services/Automatic Peering
  3. DN42 services/IRC

我图省事就直接选择了第二种。

3.3 wireguard配置

进入/etc/wireguard文件路径下:(看看该文件夹的权限,有可能当前用户没有操作权限,chmod授权一下)

cd /etc/wireguard

生成公私钥:

wg genkey | tee privatekey | wg pubkey > publickey

配置虚拟网卡tunnel.conf:

# tunnel.conf
[Interface]
ListenPort = <replace me>
PrivateKey = <replace me>
PostUp = /sbin/ip addr add dev %i 172.20.163.XXX/32 peer 172.22.119.XXX/32
PostUp = /sbin/ip addr add dev %i fd90::XXXX/128 peer fe80::XXXX/128
Table = off

[Peer]
Endpoint = <replace me>
PublicKey = <replace me>
AllowedIPs = 0.0.0.0/0,::/0

如果双方协商成功的话,这时候配置完tunnel.conf再执行:

# 启动
wg-quick up tunnel
# 停止
wg-quick down tunnel
# 查看链接的详细信息
wg

up之后就可以去ping一下peer对象,看能不能通,能的话就是可达对方的IP了。
在这里插入图片描述
配置的详细信息可参考:
1??wiregurad官网
2??WireGuard 不权威指南:WireGuard搭建与配置详解
3??DN42 howto/wireguard

4 BGP软件:bird

4.1 bird安装

sudo apt install bird

我用Ubuntu18.04安装完的bird版本是1.x
在这里插入图片描述

4.2 bird配置

前面好像忘了说了,我这边只配置了IPv4。

以下配置信息仅关于bird 1.x。bird2的话,可以参考DN42 howto/Bird2

需要替换的信息:

  • Replace with your Autonomous System Number (only the digits)
  • Replace <GATEWAY_IP> with your gateway ip (the internal dn42 ip address you use on the host, where dn42 is running)
  • Replace with your registered dn42 subnet
  • Replace <PEER_IP> with the ip of your peer who is connected with you using your favorite vpn protocol (openvpn, ipsec, tinc, …)
  • Replace <PEER_AS> the Autonomous System Number of your peer (only the digits)
  • Replace <PEER_NAME> a self chosen name for your peer

/etc/bird/bird.conf、/etc/bird/local4.conf和/etc/bird/peers4/<PEER_NAME>三个配置文件的内容直接照搬DN42 howto/Bird,修改一下上述对应的变量就可以了。

这是就可以在虚拟网卡上抓包了。

4.3 Updating ROA tables

此处也仅限IPv4
create the directory to make sure curls can save the files:

mkdir -p /var/lib/bird/

You can add cron entries to periodically update the tables:

curl -sfSLR {-o,-z}/var/lib/bird/bird_roa_dn42.conf https://dn42.burble.com/roa/dn42_roa_bird1_4.conf && chronic birdc configure

4.4 Useful bird commmands

bird can be remote controlled via the birdc command. Here is a list of useful bird commands:

birdc

在这里插入图片描述

在这里插入图片描述

这里有个restart <protocol>可以重新运行该协议。比如此处可以直接运行

bird> restart lutoma_v4

BGP peer关系就会重新建立并发送Update Message。也可此时重新抓包。

5 tcpdump抓包

tcpdump -i wg0 -w lutoma_hk.pcap
# -i 指定要抓取的网卡
# -w 指定结果保存的位置

  系统运维 最新文章
配置小型公司网络WLAN基本业务(AC通过三层
如何在交付运维过程中建立风险底线意识,提
快速传输大文件,怎么通过网络传大文件给对
从游戏服务端角度分析移动同步(状态同步)
MySQL使用MyCat实现分库分表
如何用DWDM射频光纤技术实现200公里外的站点
国内顺畅下载k8s.gcr.io的镜像
自动化测试appium
ctfshow ssrf
Linux操作系统学习之实用指令(Centos7/8均
上一篇文章      下一篇文章      查看所有文章
加:2022-04-26 12:16:02  更:2022-04-26 12:19:46 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/15 20:05:48-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码