Hi Jorg,

Here's an example:

An ip field named as 'host' in mapping.
               "host": {
                 "type" :"ip"
               },

Then I add below to ES
POST /test_index/test
{
  "host":"127.0.0.1:80 <http://127.0.0.1/>"
}

ES returns this error
{
   "error": "MapperParsingException[failed to parse [host]]; nested:
ElasticsearchIllegalArgumentException[failed to parse ip [127.0.0.1:80]];
nested: NumberFormatException[For input string: \"1:80\"]; ",
   "status": 400
}

If I only post IP without port like this
POST /test_index/test
{
  "host":"127.0.0.1"
}
ES return success.

Does that help explain the issue?
Thanks!
Chris


On Wed, Jul 30, 2014 at 4:35 PM, joergpra...@gmail.com <
joergpra...@gmail.com> wrote:

> Can you give an example what you mean by IP ports?
>
> Transport protocols like TCP has ports, but IP (Internet addresses) is
> used to address hosts on a network.
>
> Jörg
>
>
>
> On Wed, Jul 30, 2014 at 11:02 PM, Chris Neal <chris.n...@derbysoft.net>
> wrote:
>
>> Hi all,
>>
>> I'm trying to use the ip type in ES, but my IPs also have ports.  That
>> doesn't seem to be supported, which was a bit of a surprise!
>>
>> Does anyone know of a way to do this?  Or does it sound like a good
>> feature to add support for to this type?
>>
>> Thanks!
>> Chris
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "elasticsearch" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to elasticsearch+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/elasticsearch/CAND3DpgEWdxZcaFe1wmSWtjRfXqxvUC0vbq8bfE0mC7DusS_%2Bw%40mail.gmail.com
>> <https://groups.google.com/d/msgid/elasticsearch/CAND3DpgEWdxZcaFe1wmSWtjRfXqxvUC0vbq8bfE0mC7DusS_%2Bw%40mail.gmail.com?utm_medium=email&utm_source=footer>
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>  --
> You received this message because you are subscribed to the Google Groups
> "elasticsearch" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to elasticsearch+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/elasticsearch/CAKdsXoFKah6pkCWgKZYASM%3DfxyBq8waPQjyCBHj2aZaAeyiRwQ%40mail.gmail.com
> <https://groups.google.com/d/msgid/elasticsearch/CAKdsXoFKah6pkCWgKZYASM%3DfxyBq8waPQjyCBHj2aZaAeyiRwQ%40mail.gmail.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to elasticsearch+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/CAND3DpjhbQunFsT8gi0bspkNDmj9u5kOyhohoAuEX20P0rcBkQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to