मैं आंशिक आईपी पते द्वारा सर्वर का उपयोग क्यों कर सकता हूं?


10

मेरे नेटवर्क में मेरे पास आईपी एड्रेस 10.0.0.15 द्वारा ज्ञात सर्वर है। दुर्घटना से, मुझे पता चला कि कमांड: ping 10.0.15परिणाम

64 bytes from 10.0.0.15: icmp_seq=1 ttl=64 time=9.09 ms

... तो सही सर्वर पिंग का जवाब देता है। यहां तक ​​कि जब मैं कोशिश करता हूं: ping 10.15मुझे एक तुलनीय परिणाम मिलता है। इसके अलावा, आंशिक पते के लिए टेलनेट उम्मीद के मुताबिक काम करता है। हालाँकि, SSH विफल रहता है। आंशिक पते पर भेजे गए पैकेट सही सर्वर पर क्यों आते हैं?


यह एक आंशिक पता नहीं है ... इसलिए शीर्षक थोड़ा भ्रामक है ...
रोरी अलसोप

1
ssh को इस तरह के पते से कनेक्ट करने में सक्षम होना चाहिए (क्योंकि यह उसी मूल्य पर मैप करता है जो वास्तव में सॉकेट कॉल के लिए पास किया गया है), लेकिन यह होस्ट कुंजी को 'उचित' पते के लिए एक ज्ञात_होस्ट प्रविष्टि के मिलान के रूप में नहीं पहचानेगा, परिणाम के आधार पर कैसे आपने (या आपके व्यवस्थापक) ने होस्ट कुंजी जाँच को कॉन्फ़िगर किया है।
dave_thompson_085

IP पतों के पाठ निरूपण पर अतिरिक्त मज़े के लिए,
सर्वरफॉल्ट

जवाबों:


18

यह inet_aton(3)फ़ंक्शन डॉक्स के अनुसार एक स्वीकृत फ़ॉर्म है :

DESCRIPTION
       inet_aton() converts the Internet host address cp from  the  IPv4  num‐
       bers-and-dots  notation  into  binary  form (in network byte order) and
       stores it in the structure that inp  points  to.   inet_aton()  returns
       nonzero  if the address is valid, zero if not.  The address supplied in
       cp can have one of the following forms:

       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 net‐
                 work 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  rearrange‐
                 ment.

उदाहरण के लिए

$ perl -MSocket=inet_aton,inet_ntoa -E 'say inet_ntoa(inet_aton("10.0.15"))'
10.0.0.15
$ perl -MSocket=inet_aton,inet_ntoa -E 'say inet_ntoa(inet_aton("10.15"))'
10.0.0.15
$ 

हालाँकि, इन दिनों यह बेहतर होगा कि आप IPv6 समर्थन के लिए कॉल getaddrinfoया inet_ntopकॉल का उपयोग करें । "क्लास बी" सामान 1994 में वापस विरासत बन गया या तो अब हम CIDR और /24...

अरे आप इसे एक बड़ा पुराना पूर्णांक भी दे सकते हैं (लेकिन कृपया नहीं)

$ perl -MSocket=inet_aton,inet_ntoa -E 'say inet_ntoa(inet_aton("2130706433"))'
127.0.0.1
$ getent hosts 2130706433
127.0.0.1       2130706433
$ ssh 2130706433
The authenticity of host '2130706433 (127.0.0.1)' can't be established.
...

(यह अन्य यूनिक्स के लिए पोर्टेबल नहीं हो सकता; विशेष रूप से ओपनबीएसडी 2130706433 को हल नहीं कर सकता ...)


1
और भी मज़ेदार के लिए, जैसा कि डॉक्टर के अगले पैरा को कहना चाहिए (और POSIX करता है), प्रत्येक संख्या को C स्रोत की तरह पार्स किया जाता है जहां अग्रणी का 0अर्थ है अष्टक और 0xया 0Xमतलब हेक्स, इसलिए 010.020.030.040 वास्तव में पता 8.13.24.32 के रूप में लिखा गया है । फ़िशर्स दुर्भावनापूर्ण URL में होस्ट पहचान को 'छिपाने' के लिए ऐसा करते थे; मैंने हाल ही में यह देखने के लिए नहीं देखा कि क्या वे अभी भी करते हैं।
dave_thompson_085
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.