linux bash inet_ntoa inet_aton

发布于 2024-11-05 16:55:40 字数 186 浏览 5 评论 0原文

我应该是盲目的,因为我在 ubuntu 和 debian 发行版中找不到这些命令,也没有在包含它们的包中找到这些命令。

我应该自己用 C 语言编写和编译它们(或者用 perl 或任何语言编写或找到此代码)还是可以将其(我的意思是 inet_aton、inet_ntoa ..)作为这些发行版中某处的 bash 命令使用?

谢谢

I should be blind as I could not find these commands available in the ubuntu and debian's distribution, neither the package containing them.

Shall I code and compile them in C by myself (or write or find this code in perl or whatever language) or is it (I mean inet_aton, inet_ntoa ..) available as a bash command somewhere within these distros ?

Thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

峩卟喜欢 2024-11-12 16:55:40

inet_ntoainet_aton 不是命令 - 它们是库函数,用于在 IP 地址的文本和二进制表示形式之间进行转换。

轻松获取这些函数

$ perl -e 'use Socket; print inet_aton("123.45.67.89"), "\n"'
{-CY
$ perl -e 'use Socket; print inet_ntoa("{-CY"), "\n"'
123.45.67.89

您可以使用 Perl 中的 Socket 模块或 Python 中的 socket 模块

$ python -c 'import socket; print socket.inet_aton("123.45.67.89")'
{-CY
$ python -c 'import socket; print socket.inet_ntoa("{-CY")'
123.45.67.89

:但我不确定您为什么要使用bash 脚本中地址的二进制表示形式。 (上面示例中地址 123.45.67.89 的字节恰好对应于可打印的 ASCII 字符,但一般情况下您不能指望这是真的......)

inet_ntoa and inet_aton aren't commands - they're library functions, for converting between textual and binary representations of IP addresses.

You can get at these functions easily using the Socket module in Perl:

$ perl -e 'use Socket; print inet_aton("123.45.67.89"), "\n"'
{-CY
$ perl -e 'use Socket; print inet_ntoa("{-CY"), "\n"'
123.45.67.89

or the socket module in Python:

$ python -c 'import socket; print socket.inet_aton("123.45.67.89")'
{-CY
$ python -c 'import socket; print socket.inet_ntoa("{-CY")'
123.45.67.89

but I'm not sure why you'd want to be working with the binary representation of an address in a bash script. (The bytes of the address 123.45.67.89 in the examples above happen to correspond to printable ASCII characters, but you can't expect that to be true in general...)

两人的回忆 2024-11-12 16:55:40

冒着自我推销的风险,此 Github 存储库提供纯 Bash 实现。

At the risk of self-promoting, pure-Bash implementations are available at this Github repo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文