我需要对 localhost 进行通配符处理以用于开发目的,并且我对 dns 和网络方面的事情很不熟悉。
和通配符本地主机我的意思是我需要使用以下工具测试我的 python 和 node.js 应用程序:localhost.dev
,, test.localhost.dev
等等。
我已经关注本教程一切似乎都因为正确而正常运转ping
:
~ ping -c 1 iam.the.walrus.dev
PING iam.the.walrus.dev (127.0.0.1): 56 data bytes
64 bytes from 127.0.0.1: icmp_seq=0 ttl=64 time=0.037 ms
--- iam.the.walrus.dev ping statistics ---
1 packets transmitted, 1 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 0.037/0.037/0.037/0.000 ms
该dig
命令也有效:
~ dig test.localhost.dev @127.0.0.1
; <<>> DiG 9.8.5-P1 <<>> test.localhost.dev @127.0.0.1
;; global options: +cmd
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 57911
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 0
;; QUESTION SECTION:
;test.localhost.dev. IN A
;; ANSWER SECTION:
test.localhost.dev. 0 IN A 127.0.0.1
;; Query time: 0 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)
;; WHEN: Wed Nov 11 15:52:32 CET 2015
;; MSG SIZE rcvd: 52
现在我跑步
~ python -m SimpleHTTPServer 5000
http://localhost.dev:5000
当我在 python SimpleHTTPServer shell 中浏览时,我看到:
127.0.0.1 - - [11/Nov/2015 15:42:02] code 400, message Bad request syntax ('\x16\x03\x00\x00=\x01\x00\x009\x03\x00VCS\xba\xc3H\xf6\xf77\xa9\xa9\x93\xdf\xe0\xa5\x01\xce\xb1\x88\x9e9w\xd1\xab\xf3&\x8dbo\x1d\xe9\xdc\x00\x00\x12\x00\xff\x00/\x00\x05\x00\x04\x005\x00')
127.0.0.1 - - [11/Nov/2015 15:42:02] "=9VCS��H��7�����α��9wѫ�&�bo���/5" 400 -
这是怎么回事?有什么帮助吗?