perfsonar-user - Re: [perfsonar-user] Difficulties getting mesh configuration
Subject: perfSONAR User Q&A and Other Discussion
List archive
- From: Valentin Vidic <>
- To:
- Subject: Re: [perfsonar-user] Difficulties getting mesh configuration
- Date: Wed, 17 May 2017 10:21:06 +0200
- Ironport-phdr: 9a23:RS0NrhLXaSIUtFkyq9mcpTZWNBhigK39O0sv0rFitYgeIvnxwZ3uMQTl6Ol3ixeRBMOAuq0C0rWd6/mocFdDyK7JiGoFfp1IWk1NouQttCtkPvS4D1bmJuXhdS0wEZcKflZk+3amLRodQ56mNBXdrXKo8DEdBAj0OxZrKeTpAI7SiNm82/yv95HJbQhFgDiwbalvIBi0ogndqtQaipZ+J6gszRfEvmFGcPlMy2NyIlKTkRf85sOu85Nm7i9dpfEv+dNeXKvjZ6g3QqBWAzogM2Au+c3krgLDQheV5nsdSWoZjBxFCBXY4R7gX5fxtiz6tvdh2CSfIMb7Q6w4VSik4qx2ThLjlSUJOCMj8GzPhMJ+jLxVrhGvpxNw34HbfYOaO/RjcK7GYdMWWXZNUtpNWyFbHI+xaZYEAeobPeZfqonwv1QBogG6BQayAuPv1j5Ihnnr1qI10uQuDADG0xA9FN8Jv3vbttH1O7kUUeCpzanIyy/PYPxX2Tjg6YjHbgssrO+QULxsacTe11UvGxnFjlWKsIHoOS6e2OoKs2ie9eVgVOSvhnY7pA5ruDivwNkjipXTioIV0FDI7Th1zYg3KNGiVUJ2YNGpHIFTuiyaLYd7Qt0uT3l0tykkzL0GuIK0cDIMyJs52x7SbeGMfYuQ4h/7SuqdPSt0iG9gdb2khhu/8k2tyuPyVsSxzlpHqy9In9jUunwTyxDf9tWLR/5m8Uqg2juC0g7T6u9BLEwpi6bWLpsszqM+m5YOt0nIAzX4l1/sjKCMc0Up4uio5PrjYrXhvpKcMpV7igD6Mqg0hsOwG/44Mg4QUGiH4+i81Kfj8VX4QLVMkPI2jrHUvI7GKcgHu6K0BhRa34cg5hu6ATem3tEVkWcCIV9AeR+Ll43pNEvPIPD8A/e/mVOskDJzyv/JJLLhBovCLn7fkLfge7Zx8UFTyAsuwtBe+51ZEa0OL+jpWk/3qtPYEgU1Mwyuw+r/EtVyypseWX6TAq+eKK7SqUGH5vghI+mXY48VvizyK+I86/7zln82h0UdcLKt3ZsWc3C4Au9mL1uDbXrthNcBDXkFvhA4TOP0lF2OTyRfaGivUKIhtXkHD9e+AJ3NXYeriabEwTy2BLVXYHxLEFaBDS2ueomZCNkWbyfHHMZlnzoYVL7pdY4t1Brm4DHzz7dhMuvSvBMZuZPo/PNc3cveiVcy72onXIymz2iRQjQszSszTDgs0fUnrA==
On Tue, May 16, 2017 at 03:30:12PM -0700, Joshua Baker-LePain wrote:
> It's definitely not trying to talk to 137.164.85.52. The only port 443
> connections are to localhost:
>
> socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 6
> bind(6, {sa_family=AF_INET, sin_port=htons(0),
> sin_addr=inet_addr("0.0.0.0")}, 16) = 0
> connect(6, {sa_family=AF_INET, sin_port=htons(443),
> sin_addr=inet_addr("127.0.0.1")}, 16) = 0
> getpeername(6, {sa_family=AF_INET, sin_port=htons(443),
> sin_addr=inet_addr("127.0.0.1")}, [16]) = 0
Yes, these should be local connections to pscheduler API.
> Prior to this, I see a lot of errors that look like this:
>
> socket(PF_INET, SOCK_DGRAM, IPPROTO_UDP) = 6
> bind(6, {sa_family=AF_INET, sin_port=htons(0),
> sin_addr=inet_addr("0.0.0.0")}, 16) = 0
> getpeername(6, 0x4e98c20, [256]) = -1 ENOTCONN (Transport endpoint
> is not connected)
> sendto(6,
> "\7\361\1\0\0\1\0\0\0\0\0\0\0011\0010\0010\003127\7in-addr\4a"..., 40, 0,
> {sa_family=AF_INET, sin_port=htons(53),
> sin_addr=inet_addr("169.230.239.25")}, 16) = 40
> recvfrom(6,
> "\7\361\205\200\0\1\0\1\0\1\0\2\0011\0010\0010\003127\7in-addr\4a"..., 512,
> 0, {sa_family=AF_INET, sin_port=htons(53),
> sin_addr=inet_addr("169.230.239.25")}, [16]) = 121
>
> where 169.230.239.25 is the nameserver configured in /etc/resolv.conf (it's
> actually a proxy). Just for grins, at this point I set the mesh
> configuration_url to https://137.164.85.52/CENIC-Dashboard.json to try to
> get around any DNS issues (which don't exist at the command line), and the
> results are the same.
Try to find a DNS request resolving ps-dashboard.cenic.net in strace
and a TCP connection request after that.
--
Valentin Vidic
Computer Systems Engineer - Expert
Department of Computer Infrastructure and Services
Croatian Academic and Research Network - CARNet
Josipa Marohnica 5, HR-10000 Zagreb, Croatia
tel: +385 1 6661 714, fax. +385 1 6661 635
gsm: +385 91 2480 919
www.CARNet.hr
- [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/12/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/16/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/16/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/18/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/18/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/22/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/17/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Joshua Baker-LePain, 05/16/2017
- Re: [perfsonar-user] Difficulties getting mesh configuration, Valentin Vidic, 05/16/2017
Archive powered by MHonArc 2.6.19.