每天推薦一個 GitHub 優質開源項目和一篇精選英文科技或編程文章原文,歡迎關注開源日報。交流QQ群:202790710;電報群 https://t.me/OpeningSourceOrg


今日推薦開源項目:《後端設計模式指南 Awesome Scalability》GitHub地址

推薦理由:本項目提供了大量精選的閱讀材料,旨在幫助後台開發者們能夠藉助項目中各個文獻的思路做出一個具有延展性,可用性,穩定性的後台。這個概念雖然模糊,但是藉由著名工程師(Martin Fowler,Robert C. Martin,Tom White等)和高質量資源(highscalability.com,infoq.com等)的詮釋,相信大家能從中理解並學到有用的東西。

開源周報2018年第5期:好項目自己動手,加把油何必眾籌

項目將各類文獻整理,涵蓋各個方面。主要分為原則、可擴展性、穩定性、其他方面、會談、圖書七個板塊。包括了異常處理,資料庫策略等內容。

項目歡迎有意者的參與,貢獻是非常受歡迎的!有興趣的朋友可以一試。


今日推薦英文原文:《3 useful things you can do with the IP tool in Linux》作者:

原文鏈接:https://opensource.com/article/18/5/useful-things-you-can-do-with-IP-tool-Linux

推薦理由:IP 工具是 GNU/Linux 系統中非常常用的一個命令,怎麼用它查看你的ip地址,路由表呢?

3 useful things you can do with the IP tool in Linux

It has been more than a decade since the ifconfig command has been deprecated on Linux in favor of the iproute2 project, which contains the magical tool ip. Many online tutorial resources still refer to old command-line tools like ifconfig, route, and netstat. The goal of this tutorial is to share some of the simple networking-related things you can do easily using the ip tool instead.

Find your IP address

[dneary@host]$ ip addr show
[snip]
44: wlp4s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
link/ether 5c:e0:c5:c7:f0:f1 brd ff:ff:ff:ff:ff:ff
inet 10.16.196.113/23 brd 10.16.197.255 scope global dynamic wlp4s0
valid_lft 74830sec preferred_lft 74830sec
inet6 fe80::5ee0:c5ff:fec7:f0f1/64 scope link
valid_lft forever preferred_lft forever

ip addr show will show you a lot of information about all of your network link devices. In this case, my wireless Ethernet card (wlp4s0) is the IPv4 address (the inet field) 10.16.196.113/23. The /23 means that there are 23 bits of the 32 bits in the IP address, which will be shared by all of the IP addresses in this subnet. IP addresses in the subnet will range from 10.16.196.0 to 10.16.197.254. The broadcast address for the subnet (the brd field after the IP address) 10.16.197.255 is reserved for broadcast traffic to all hosts on the subnet.

We can show only the information about a single device using ip addr show dev wlp4s0, for example.

Display your routing table

[dneary@host]$ ip route list
default via 10.16.197.254 dev wlp4s0 proto static metric 600
10.16.196.0/23 dev wlp4s0 proto kernel scope link src 10.16.196.113 metric 601
192.168.122.0/24 dev virbr0 proto kernel scope link src 192.168.122.1 linkdown

The routing table is the local host's way of helping network traffic figure out where to go. It contains a set of signposts, sending traffic to a specific interface, and a specific next waypoint on its journey.

If you run any virtual machines or containers, these will get their own IP addresses and subnets, which can make these routing tables quite complicated, but in a single host, there are typically two instructions. For local traffic, send it out onto the local Ethernet, and the network switches will figure out (using a protocol called ARP) which host owns the destination IP address, and thus where the traffic should be sent. For traffic to the internet, send it to the local gateway node, which will have a better idea how to get to the destination.

In the situation above, the first line represents the external gateway for external traffic, the second line is for local traffic, and the third is reserved for a virtual bridge for VMs running on the host, but this link is not currently active.

Monitor your network configuration

[dneary@host]$ ip monitor all
[dneary@host]$ ip -s link list wlp4s0

The ip monitor command can be used to monitor changes in routing tables, network addressing on network interfaces, or changes in ARP tables on the local host. This command can be particularly useful in debugging network issues related to containers and networking, when two VMs should be able to communicate with each other but cannot.

When used with all, ip monitor will report all changes, prefixed with one of [LINK] (network interface changes), [ROUTE] (changes to a routing table), [ADDR] (IP address changes), or [NEIGH] (nothing to do with horses—changes related to ARP addresses of neighbors).You can also monitor changes on specific objects (for example, a specific routing table or an IP address).

Another useful option that works with many commands is ip -s, which gives some statistics. Adding a second -s option adds even more statistics. ip -s link list wlp4s0 above will give lots of information about packets received and transmitted, with the number of packets dropped, errors detected, and so on.

Handy tip: Shorten your commands

In general, for the ip tool, you need to include only enough letters to uniquely identify what you want to do. Instead of ip monitor, you can use ip mon. Instead of ip addr list, you can use ip a l, and you can use ip r in place of ip route. Ip link list can be shorted to ip l ls. To read about the many options you can use to change the behavior of a command, visit the ip manpage.


每天推薦一個 GitHub 優質開源項目和一篇精選英文科技或編程文章原文,歡迎關注開源日報。交流QQ群:202790710;電報群 https://t.me/OpeningSourceOrg