Hi guys,

I'm trying to get Akka Remote actors working via UDP. Everything works 
beautifully over TCP, but I need it over UDP. The documentation seems quite 
sparse with regards to UDP but it is mentioned. The behaviour I'm seeing is 
ActorSystem1 connects to ActorSystem0 fine, but once a single connection is 
already established, any future connections by ActorSystem2 for example 
will timeout and fail to connect. I captured this in wireshark and all that 
happens is that the client ActorSystem2 sends a UDP packet at ActorSystem0 
and gets an ICMP Destination unreachable (port unreachable) in response and 
nothing further.

Connection string from client: 
 akka.udp://actorsystem@<serverip>:4201/user/serveractor

Configuration is straight from reference config (from here: 
http://doc.akka.io/docs/akka/current/general/configuration.html#Listing_of_the_Reference_Configuration)
 
 with this added:

  akka.remote.netty.udp = ${akka.remote.netty.tcp}
  akka.remote.netty.udp {
    transport-protocol = udp
    hostname = "serverip"
    port = 4201
  }

Any help would be greatly appreciated

-- 
>>>>>>>>>>      Read the docs: http://akka.io/docs/
>>>>>>>>>>      Check the FAQ: 
>>>>>>>>>> http://doc.akka.io/docs/akka/current/additional/faq.html
>>>>>>>>>>      Search the archives: https://groups.google.com/group/akka-user
--- 
You received this message because you are subscribed to the Google Groups "Akka 
User List" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/akka-user.
For more options, visit https://groups.google.com/d/optout.

Reply via email to