यह कैसे है कि लापता 0s स्वचालित रूप से आईपी पते में जोड़े जाते हैं? (`पिंग 10.5`` पिंग 10.0.0.5` के बराबर)


36

मैंने गलती से टाइप किया

ssh 10.0.05

के बजाय

ssh 10.0.0.5

और बहुत आश्चर्य हुआ कि इसने काम किया। मैंने भी कोशिश की 10.005और 10.5उन लोगों ने भी अपने आप विस्तार किया 10.0.0.5। मैंने भी कोशिश की 192.168.1और इसका विस्तार हुआ 192.168.0.1। यह सब भी pingबजाय के साथ काम किया ssh, इसलिए मुझे संदेह है कि यह कई अन्य कमांडों के लिए काम करेगा जो एक मनमाना उपयोगकर्ता-आपूर्ति होस्ट से जुड़ते हैं।

यह काम क्यों करता है? क्या यह व्यवहार कहीं दस्तावेज है? क्या यह व्यवहार POSIX का हिस्सा है या कुछ और? या यह सिर्फ कुछ अजीब कार्यान्वयन है? (इसके लायक क्या है इसके लिए Ubuntu 13.10 का उपयोग करना।)



जवाबों:


43

से उद्धृत man 3 inet_aton:

   a.b.c.d   Each of the four numeric parts specifies a byte of the
             address; the bytes are assigned in left-to-right order to
             produce the binary address.

   a.b.c     Parts a and b specify the first two bytes of the binary
             address.  Part c is interpreted as a 16-bit value that
             defines the rightmost two bytes of the binary address.
             This notation is suitable for specifying (outmoded) Class B
             network addresses.

   a.b       Part a specifies the first byte of the binary address.
             Part b is interpreted as a 24-bit value that defines the
             rightmost three bytes of the binary address.  This notation
             is suitable for specifying (outmoded) Class C network
             addresses.

   a         The value a is interpreted as a 32-bit value that is stored
             directly into the binary address without any byte
             rearrangement.

   In all of the above forms, components of the dotted address can be
   specified in decimal, octal (with a leading 0), or hexadecimal, with
   a leading 0X).  Addresses in any of these forms are collectively
   termed IPV4 numbers-and-dots notation.  The form that uses exactly
   four decimal numbers is referred to as IPv4 dotted-decimal notation
   (or sometimes: IPv4 dotted-quad notation).

मज़े के लिए, यह आज़माएँ:

$ nslookup unix.stackexchange.com
Non-authoritative answer:
Name:   unix.stackexchange.com
Address: 198.252.206.140

$ echo $(( (198 << 24) | (252 << 16) | (206 << 8) | 140 ))
3338456716

$ ping 3338456716         # What?  What did we ping just now?
PING stackoverflow.com (198.252.206.140): 48 data bytes
64 bytes from 198.252.206.140: icmp_seq=0 ttl=52 time=75.320 ms
64 bytes from 198.252.206.140: icmp_seq=1 ttl=52 time=76.966 ms
64 bytes from 198.252.206.140: icmp_seq=2 ttl=52 time=75.474 ms

2
क्यों, यह कक्षा ए, बी, सी नेटवर्क में पतों का प्रतिनिधित्व करने के लिए अधिक उपयोगी तरीका प्रदान करता है। उदाहरण के लिए 127.1 127.0 / 8 श्रेणी के लूपबैक नेटवर्क में लूपबैक पता है जिसमें 16 मिलियन पते 127.0 से 127.0xffffff शामिल हैं। और 192.168.0 / 16 वर्ग बी नेटवर्क पर, आपके पास आम तौर पर 192.168.1 से 192.168.65534 पते होंगे। INADDR_ANY पता 0, DHCP प्रसारण पता 0xffffffff है, जो टाइप करने के लिए छोटा है, आदि
स्टीफन चेज़लस

4
यार, काश यूजर्स इस तरह के आसान सवाल पूछने से पहले http: // 1249767214 की कोशिश करते।
३ah में

21

को जोड़ना @ devnull के ठीक जवाब है, IPv4 पतों निम्न तरीकों से किया जा सकता है।

उदाहरण

इस डोमेन नाम google.comको निम्नलिखित तरीकों से दर्शाया जा सकता है:

  • 74.125.226.4  (बिंदीदार दशमलव)
  • 1249763844  (फ्लैट दशमलव)
  • 0112.0175.0342.0004  (बिंदीदार अष्टदल)
  • 011237361004  (फ्लैट ऑक्टल)
  • 0x4A.0x7D.0xE2.0x04  (बिंदीदार हेक्स)
  • 0x4A7DE204  (फ्लैट हेक्स)
  • 74.0175.0xe2.4  (ಠ_ಠ)

स्रोत: 192.168.0.58 से 192.168.072 (केवल 2 डॉट्स) पिंग क्यों करता है?


3
अष्टक और दशांश मिलाना शैतान का काम है।
नित

4
एक डोमेन नाम, किसी भी अर्थ में, एक आईपीवी 4 पता नहीं है।
डेविड कॉनरेड

@DavidConrad - मुझे लगा कि यह स्पष्ट था, क्योंकि यह संख्यात्मक नहीं है। यह उन लोगों के लिए स्पष्ट कर दिया जो tihs नहीं जानते हैं।
स्लम
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.