Select Your Language
Infrastructure and management.
- Red Hat Enterprise Linux
- Red Hat Virtualization
- Red Hat Identity Management
- Red Hat Directory Server
- Red Hat Certificate System
- Red Hat Satellite
- Red Hat Subscription Management
- Red Hat Update Infrastructure
- Red Hat Insights
- Red Hat Ansible Automation Platform

Cloud Computing
- Red Hat OpenShift
- Red Hat CloudForms
- Red Hat OpenStack Platform
- Red Hat OpenShift Container Platform
- Red Hat OpenShift Data Science
- Red Hat OpenShift Online
- Red Hat OpenShift Dedicated
- Red Hat Advanced Cluster Security for Kubernetes
- Red Hat Advanced Cluster Management for Kubernetes
- Red Hat Quay
- OpenShift Dev Spaces
- Red Hat OpenShift Service on AWS
- Red Hat Gluster Storage
- Red Hat Hyperconverged Infrastructure
- Red Hat Ceph Storage
- Red Hat OpenShift Data Foundation
- Red Hat Runtimes
- Red Hat JBoss Enterprise Application Platform
- Red Hat Data Grid
- Red Hat JBoss Web Server
- Red Hat Single Sign On
- Red Hat support for Spring Boot
- Red Hat build of Node.js
- Red Hat build of Thorntail
- Red Hat build of Eclipse Vert.x
- Red Hat build of OpenJDK
- Red Hat build of Quarkus
Integration and Automation
- Red Hat Integration
- Red Hat Fuse
- Red Hat AMQ
- Red Hat 3scale API Management
- Red Hat JBoss Data Virtualization
- Red Hat Process Automation
- Red Hat Process Automation Manager
- Red Hat Decision Manager
ntpd process bind() cannot assign requested address
- No translations currently exist.
Environment
- Red Hat Enterprise Linux 5
investigate a matter of the following log messages;
The contents of the message were going to do the same period at the time using an address that a target address was not assigned or does not exist on a current machine when it perform synchronization of the time on a part equivalent to [ipv6 Addr], but it is in a message saying that it was impossible.
In other words it is judged that an applicable message was output because host received EADDRNOTAVAIL of error code 99 from bind() function when it was going to do string charge account (bind) to port 123 using an address of ipv6. ※ ntpd goes to refer to both ipv4, ipv6 addresses as synchronization at the time in specifications.
When there is not it and measures do not use ipv6 address on the network where an applicable host supports ipv6, it is thought that it does't carry out the map with the ipv6 address by ntp service with an effective method by unloading ipv6 module.
When there is not an applicable host in ipv6 address band and when it's going to map ipv6 address, for a cause, it occurs.
This solution is part of Red Hat’s fast-track publication program, providing a huge library of solutions that Red Hat engineers have created while supporting our customers. To give you the knowledge you need the instant it becomes available, these articles may be presented in a raw and unedited form.
Formatting Tips
Here are the common uses of Markdown.
Request Japanese Translation
Generating machine translation.
- Stack Overflow Public questions & answers
- Stack Overflow for Teams Where developers & technologists share private knowledge with coworkers
- Talent Build your employer brand
- Advertising Reach developers & technologists worldwide
- About the company
Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
How to fix "[SEVERE]: bind() failed: Cannot assign requested address (99)" while starting chromedriver
I downloaded the latest version of chromedriver in Centos 7 platform: https://chromedriver.storage.googleapis.com/index.html?path=74.0.3729.6/ I start chromedriver and get this error.
How can I solve this?

- selenium-chromedriver
- When running WebDriver with Chrome browser, getting message, “Only local connections are allowed” even though browser launches properly , Only local connections are allowed Chrome and Selenium webdriver , Selenium for ChromeDriver and Chrome Browser and the log message “Only local connections are allowed” , etc. – jww Apr 25, 2019 at 12:03
8 Answers 8
In my case running chromedriver with --verbose flag helped to figure out the issue:
Chrome attempted to listen on IPv6 address, which was not enabled in Docker. You can either enable IPv6 support (which works only on Linux host) or ignore the error since chromedriver process will be listening on IPv4 anyway.
- 8 Hi, how to "ignore the error"? in my case the container stopped, when I did nothing. – sww176 Aug 8, 2019 at 15:50
- @sww176 Maybe it is something else causing the error in your case. Do you get exact same output? In my case the process continues to work after printing the error message. – Yaroslav Admin Aug 8, 2019 at 15:52
- 1 It's the same error. I added --verbose flag and the chromedriver.log shows [1564749154.011][INFO]: listen on IPv6 failed with error ERR_ADDRESS_INVALID. I fixed this by adding --whitelisted-ips to webdriver args. Thanks for your help. – sww176 Aug 9, 2019 at 9:28
In one line: you need to pass --whitelisted-ips= into chrome driver (not chrome!)
You can do it in different way (depend on your env setup):
If you use ChromeDriver locally/directly (not using RemoteWebDriver) from code, just insert lines below before ChromeDriver init
If you use it remotely (eg. selenium hub/grid) you need to set system property when node starts, like in command:
or docker by passing JAVA_OPTS env
- 5 What is the reason for that? – User Rebo Dec 30, 2021 at 17:33
I managed to workaround by adding argument as shown below (Python)
This is from Google's troubleshooting tips :
By default, Docker runs a container with a /dev/shm shared memory space 64MB. This is typically too small for Chrome and will cause Chrome to crash when rendering large pages. To fix, run the container with docker run --shm-size=1gb to increase the size of /dev/shm . Since Chrome 65, this is no longer necessary. Instead, launch the browser with the --disable-dev-shm-usage flag

- 4 This may be specific to Docker on Windows, as this just started a couple days ago since upgrading to a new version – Steve Desmond Apr 22, 2021 at 19:08
- 2 This will fix the issue if your shm size is too small (typically in Docker environments. See developers.google.com/web/tools/puppeteer/… – Gene Jul 27, 2021 at 13:43
The cause lay somewhere else. I was running chrome on docker container and for me this was solved when the driver was run in a headless mode.
Results: Now tests run successfully, without any errors.
I had the same issue in my team, but in our case the solution is completely new. Probably because the root cause is different, although the visible error message was the same.
The issue started to occur in our CI/CD pipeline 5 days ago. We realised that at the same time new selenium/standalone-chrome docker image was pushed to selenium docker hub.
https://hub.docker.com/r/selenium/standalone-chrome/tags
That latest image caused this error. It never happened before during 1.5 year period. But it happened with that latest image. Digest of that image: 9943ba9d2a89e984080f5681b390229fb47f7d3bb732e4f440456fc52335bae8
The solution was reverting the image used by our Jenkins to the selenium/standalone-chrome docker image that was pushed 21 days ago. Digest: bc4023992691ab8e2f20297f334fdcddd982928fbd969239b39b3dbc2dfc0657
We are planning to check the new images to come for compatibility with our CI/CD so that we can get back up to date with the latest selenium images

I had the similar problem; and my issue was i did not quit the existing driver and tried to use again. driver.quit() solved my problem.

In my case, there we 2 docker containers running and the port 4444 used by selenium. Closing one container solved the issue for the other one. The message is still there, but the tests are running. Earlier they were getting stuck.
I encountered this when trying to run tests (Java) in a container ubuntu:20.04 . Extracted the following from this guidance Selenium: WebDriverException:Chrome failed to start: crashed as google-chrome is no longer running so ChromeDriver is assuming that Chrome has crashed
There are threads stating --no-sandbox has to be first, but I experimented and this was not necessary, at least in Java.
Your Answer
Sign up or log in, post as a guest.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy
Not the answer you're looking for? Browse other questions tagged linux selenium-chromedriver or ask your own question .
- The Overflow Blog
- How Intuit democratizes AI development across teams through reusability sponsored post
- The nature of simulating nature: A Q&A with IBM Quantum researcher Dr. Jamie...
- Featured on Meta
- We've added a "Necessary cookies only" option to the cookie consent popup
- The [amazon] tag is being burninated
- Launching the CI/CD and R Collectives and community editing features for...
- Staging Ground Beta 1 Recap, and Reviewers needed for Beta 2
- Temporary policy: ChatGPT is banned
Hot Network Questions
- How can I make these specific modifications using tcolorbox
- Acidity of alcohols and basicity of amines
- Is there a proper earth ground point in this switch box?
- The region and polygon don't match. Is it a bug?
- Is it correct to use "the" before "materials used in making buildings are"?
- Tips for golfing in SVG
- Does Cosmic Background radiation transmit heat?
- Has 90% of ice around Antarctica disappeared in less than a decade?
- will thumb also get callus on strumming guitar
- What can a lawyer do if the client wants him to be acquitted of everything despite serious evidence?
- Does Counterspell prevent from any further spells being cast on a given turn?
- Why does Jesus turn to the Father to forgive in Luke 23:34?
- Mini project #2: Guessing a number loop
- How to make graphons pictures?
- Differential Input to ADC Depends on Mac vs Windows Laptop USB Power (ADS1115)
- Resistance against timing attacks of AES candidates
- Why does hooking voltmeter to two transformers show 0 voltage?
- Why does Grover's algorithm behaves so different for different solution addresses?
- Book about a good dark lord, think "not Sauron"
- How do you get out of a corner when plotting yourself into a corner
- So what *is* the Latin word for “chocolate”?
- Theoretically Correct vs Practical Notation
- Is a PhD visitor considered as a visiting scholar?
- Do you really get double penalized for rolling HSA excess contributions to the next year?
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .
You are not logged in.
- Topics: Active | Unanswered
- » Newbie Corner
- » [SOLVED] noobish question about ntp and ipv6
Topic closed
#1 2010-12-26 22:11:52

[SOLVED] noobish question about ntp and ipv6
Hi, Hi , yesterday I decided to install ntp. And while it appears to be doing its job fine, there is a troublesome message popping up in my /var/log/error.log.
/var/log/errors.log
IPv6 is disabled at my router as well as in /etc/ufw/sysctl.conf
hence the ntpd complaint. But I was wondering why is is trying to make that connection in the first place?
Here is my /etc/ntp.conf
and my /etc/hosts
the output of ntpq -p
and finally /var/log/ntp.log
I am a noob and so I'm sure it's something quite simple but after a considerable amount of time searching and perusing the wiki I'm coming up empty. I would very much appreciate any help. Thanks.
Last edited by disastrophe (2010-12-28 00:18:02)
"If we believe absurdities, we shall commit atrocities." ~ Voltaire
#2 2010-12-27 01:23:19
Re: [solved] noobish question about ntp and ipv6.
you can find all the command-line switches you can pass to ntpd in 'man ntpd', there's a -4 option for ipv4 only
the daemon scripts sources /etc/conf.d/ntp-client.conf so you just need to add the switch to NTPD_ARGS
Last edited by thestinger (2010-12-27 01:23:45)
#3 2010-12-28 00:17:01
Thank you very much! The daemon config location somehow eluded me. Marking as solved.
#4 2010-12-28 00:24:35

Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy
#5 2014-09-29 16:22:17

Since this thread comes up high in google searches even now at the end of September 2014, I thought I'd give the proper answer here for Arch with systemd:
First, get the current command being started by systemd:
cat /usr/lib/systemd/system/ntpd.service
And you should find a line starting with ExecStart, like this:
ExecStart=/usr/bin/ntpd -g -u ntp:ntp
You should not edit that file directly since it will be overwriting on update. Instead, follow the directions in https://wiki.archlinux.org/index.php/Sy … unit_files , which currently suggests you do something like the following:
Edit a new file (obviously as root) called
/etc/systemd/system/ntpd.service.d/customexec.conf
(The directory ..../ntpd.service.d/ probably already exists and is empty, but if not, create it.)
Put the following into it:
[Service] ExecStart= ExecStart=/usr/bin/ntpd -4 -g -u ntp:ntp
Which first clears the previous ExecStart, and then replaces it with one that includes the -4 flag. I tried just editing the /etc/ntp.conf file first to put the -4 flag in there, but that conf file is basically ignored because the flags to be run are listed in the systemd service file.
#6 2015-01-19 15:13:16

@colikeenan, nice solution! Only one minor adjustment, I believe it is more systematic to simply through
and input what you suggested, that is,
Optionally,
My question would be shouldn't systemd take care of this automatically (i.e. detect if IPv6 makes sense and act accordingly)?
#7 2015-01-19 15:43:55

If the issue is that common, you should add it to the wiki instead of necrobumping a 4-year old thread.
https://wiki.archlinux.org/index.php/IP … r_programs <--- there

Last edited by Alad (2015-01-19 15:45:54)
Mods are just community members who have the occasionally necessary option to move threads around and edit posts. -- Trilby

#8 2015-01-19 16:03:00

This. https://wiki.archlinux.org/index.php/Fo … Bumping.27
Arch + dwm • Mercurial repos • Surfraw
Registered Linux User #482438
Board footer
Atom topic feed
Powered by FluxBB
Stack Exchange Network
Stack Exchange network consists of 181 Q&A communities including Stack Overflow , the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Super User is a question and answer site for computer enthusiasts and power users. It only takes a minute to sign up.
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
iperf returning “bind failed: cannot assign requested address” in Windows XP and 7
I am trying to set up iperf on an old HP server running Windows XP Professional to test multicast, but whenever I issue the command iperf -s -u -B <ip address> , it returns:
bind failed: Cannot assign requested address
It doesn't matter what I put as the IP address (224.0.0.1, 192.168.150.123, 10.254.1.11 were each tested unsuccessfully), it generates exactly the same error. Using different ports with the "-p" flag also has zero effect (iperf defaults to 5001; I have also tried 50, 99, 5002, 8000, 9000).
However, if I use the server's actual IP address (10.254.1.10), the iperf service starts up without any problems. The symptoms are identical on my Windows 7 x64 laptop.
I have looked online for the past few days and I see many people reporting this problem, but I don't see any applicable solutions (the bind error alone tends to be associated with people writing their own code, and it's association with iperf specifically tends to garner no useful answers), so I would really appreciate any assistance, I am tearing my hair out over this vague Windows error.
I am using the precompiled version of iperf 2.0.5-2-win32, but I at this point I don't mind downloading the source, editing it, and compiling it myself if that's the only way to solve this...I just don't have any C++ experience, so I can't go bug-hunting on my own.
Try a version built without Cygwin from the download page .
I was having the same problem and with version 2.0.8 (12 jan 2015 Windows 32 bits) worked
- 1 Unfortunately, I no longer have either server I was using to test with, so I can't verify this solution with my specific situation. Still, if it worked for you, I'll mark it as the answer for anyone else who runs into this issue in the future. – Liesmith Jul 22, 2016 at 11:55
- Version 2.0.8 is one of only a few Iperf binaries with the text "built without Cygwin" in its description on the download page. But I wonder if Cygwin is to blame at all. Because I had the same type of bind error (without using the -u option) with version 2.0.5 and it was resolved with version 2.0.6 which is not stated to be built without Cygwin. In addition, version 2.0.8 resolved the issue as well. So while it may so be that 2.0.8 resolved the issue in this case, it may not have done so for the reason you think it did (being built without Cygwin). – Samir Jun 5, 2021 at 20:25
Your Answer
Sign up or log in, post as a guest.
Required, but never shown
By clicking “Post Your Answer”, you agree to our terms of service , privacy policy and cookie policy
Not the answer you're looking for? Browse other questions tagged windows-7 networking windows-xp multicast iperf or ask your own question .
- The Overflow Blog
- How Intuit democratizes AI development across teams through reusability sponsored post
- The nature of simulating nature: A Q&A with IBM Quantum researcher Dr. Jamie...
- Featured on Meta
- We've added a "Necessary cookies only" option to the cookie consent popup
Hot Network Questions
- Do roots of these polynomials approach the negative of the Euler-Mascheroni constant?
- Why does Jesus turn to the Father to forgive in Luke 23:34?
- Minimising the environmental effects of my dyson brain
- A-Z related to countries
- How can I explain to my manager that a project he wishes to undertake cannot be performed by the team?
- Checking system vs. SEPA and the like
- Did any DOS compatibility layers exist for any UNIX-like systems before DOS started to become outmoded?
- Recovering from a blunder I made while emailing a professor
- FAA Handbooks Copyrights
- Partner is not responding when their writing is needed in European project application
- Do you really get double penalized for rolling HSA excess contributions to the next year?
- The region and polygon don't match. Is it a bug?
- How to make graphons pictures?
- will thumb also get callus on strumming guitar
- If a law is new but its interpretation is vague, can the courts directly ask the drafters the intent and official interpretation of their law?
- Applications of super-mathematics to non-super mathematics
- "We, who've been connected by blood to Prussia's throne and people since Düppel"
- Small bright constellation on the photo
- How many "grounds" are there and what is the difference?
- Resistance against timing attacks of AES candidates
- Is it correct to use "the" before "materials used in making buildings are"?
- Book about a good dark lord, think "not Sauron"
- How can I make these specific modifications using tcolorbox
- How can I find out which sectors are used by files on NTFS?
Your privacy
By clicking “Accept all cookies”, you agree Stack Exchange can store cookies on your device and disclose information in accordance with our Cookie Policy .
- General Support

some warnings id like help to fix possibly?
By comet424 April 18, 2019 in General Support
- Reply to this topic
- Start new topic
Recommended Posts
hi I just checking the syslog as Fix Common Issues finds errors but never shows any errors
i tried googling some of these warrnings but i cant find any info... if anyone knows be great so i can fix the errors... also i changed the ssh port yet its still stating 22 also... and i try ssh [email protected] :2000 and i cant connect
but maybe you guys know
here is if the warnings
on my second server i get these errors
and im guessing the login for the port 22 is ok as i checked the Login button and that's what showed
Link to comment

A bios update might fix some of the ACPI related errors, but none of those are something to worry about.

Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account. Note: Your post will require moderator approval before it will be visible.

× Pasted as rich text. Restore formatting
Only 75 emoji are allowed.
× Your link has been automatically embedded. Display as a link instead
× Your previous content has been restored. Clear editor
× You cannot paste images directly. Upload or insert images from URL.
- Insert image from URL
- Submit Reply
- Existing user? Sign In
- All Activity
- Leaderboard
- Create New...

- Sophos Endpoint
- Sophos Firewall
- Sophos Central
- Sophos Factory
- Sophos Mobile
- Sophos Cloud Optix
- Sophos Sensor
- Sophos Switch
- Sophos Wireless
- Sophos Email
- UTM Firewall
- Sophos Community Blog
- Community Security Blog
- Product Documentation Blog
- Application Control
- Getting Started
- Sophos Partners Group
- Community Leaderboards

- Release Notes & News
- Discussions
- Recommended Reads
- Early Access Programs
- State Not Answered
- Locked Locked
- Replies 0 replies
- Subscribers 3 subscribers
- Views 932 views
- Users 0 members are here
- Sophos UTM 9
NTP errors after enabling IPv6

Getting tons of the syslog info warnings after enabling IPv6.. Sophos UTM 9 bug?
2017:01:16-13:39:36 fwhostname-1 ntpd[27946]: unable to create socket on eth4 (2175) for 2001::1#123 <-----IPv6 address redacted.
2017:01:16-13:45:04 fwhostname-1 ntpd[27946]: bind(41) AF_INET6 2001::1#123 flags 0x11 failed: Cannot assign requested address <-----IPv6 address redacted.
2017:01:16-13:56:12 fwhostname-1 ntpd[9482]: failed to init interface for address 2001::1 <-----IPv6 address redacted.
NTP config in the firewall is set to use pool.ntp.org. Looks like it resolves to an IPv4 address automatically.
Firmware version: 9.409-9 Pattern version: 116407
- No suggested jump to results
- Notifications
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Task 0 failed : Cannot assign requested address #13
Sebastien-Raguideau commented Jul 30, 2019 • edited
flass commented Jul 30, 2019
Sorry, something went wrong.
Sebastien-Raguideau commented Jul 31, 2019
Flass commented jul 31, 2019 • edited, sebastien-raguideau commented aug 1, 2019, flass commented aug 1, 2019.
No branches or pull requests
Log in or Sign up
Services attempt to assign ipv6 addresses before ready.
Discussion in ' Installation/Configuration ' started by Nolan , Sep 21, 2017 .
Nolan Member
Taken from /var/log/syslog, running Debian 9. I need to run dibbler or dhclient (the behavior below occurs on both, unfortunately) before attempting to bind the addresses. If I reboot, I need to restart the services after the fact for them to work properly. Sep 21 00:09:43 octave ntpd[1384]: bind(25) AF_INET6 2001:bc8:3ca9:101::5#123 flags 0x11 failed: Cannot assign requested address Sep 21 00:09:43 octave ntpd[1384]: unable to create socket on eno1 (9) for 2001:bc8:3ca9:101::5#123 Sep 21 00:09:43 octave ntpd[1384]: failed to init interface for address 2001:bc8:3ca9:101::5 Sep 21 00:09:43 octave ntpd[1384]: bind(25) AF_INET6 2001:bc8:3ca9:101::4#123 flags 0x11 failed: Cannot assign requested address Sep 21 00:09:43 octave ntpd[1384]: unable to create socket on eno1 (10) for 2001:bc8:3ca9:101::4#123 Sep 21 00:09:43 octave ntpd[1384]: failed to init interface for address 2001:bc8:3ca9:101::4 Sep 21 00:09:43 octave ntpd[1384]: bind(25) AF_INET6 2001:bc8:3ca9:101::3#123 flags 0x11 failed: Cannot assign requested address Sep 21 00:09:43 octave ntpd[1384]: unable to create socket on eno1 (11) for 2001:bc8:3ca9:101::3#123 Sep 21 00:09:43 octave ntpd[1384]: failed to init interface for address 2001:bc8:3ca9:101::3 Sep 21 00:09:43 octave ntpd[1384]: bind(25) AF_INET6 2001:bc8:3ca9:101::2#123 flags 0x11 failed: Cannot assign requested address Sep 21 00:09:43 octave ntpd[1384]: unable to create socket on eno1 (12) for 2001:bc8:3ca9:101::2#123 Sep 21 00:09:43 octave postfix/postfix-script[1677]: starting the Postfix mail system Sep 21 00:09:43 octave postfix/master[1687]: fatal: bind 2001:bc8:3ca9:101::3 port 25: Cannot assign requested address Sep 21 00:09:44 octave postfix/master[1682]: fatal: daemon initialization failure Sep 21 00:09:45 octave postfix/postfix-script[1875]: fatal: mail system startup failed Sep 21 00:09:46 octave systemd[1]: [email protected] : Control process exited, code=exited status=1 Sep 21 00:09:46 octave systemd[1]: Failed to start Postfix Mail Transport Agent (instance -). Sep 21 00:09:46 octave systemd[1]: [email protected] : Unit entered failed state. Sep 21 00:09:46 octave systemd[1]: [email protected] : Failed with result 'exit-code'. Any ideas on how I can solve this problem?
Anyone have any ideas?
If anyone could help me solve this, that would be greatly appreciated. If you need additional logs or other information, please let me know.
florian030 ISPConfig Developer ISPConfig Developer
did you add the ip to the master.cf from postfix and the bind-config?
florian030 said: ↑ did you add the ip to the master.cf from postfix and the bind-config? Click to expand...
Any other ideas? My host unfortunately is no help in this situation.
Share This Page
Useful searches.

IMAGES
VIDEO
COMMENTS
Oct 16 16:29:01 instance-1 ntpd[668]: bind(21) AF_INET6 fe80::4001:aff:fe8e:2%2#123 flags 0x11 failed: Cannot assign requested address Oct 16 16:29:01 instance-1 ntpd[668]: unable to create socket on eth0 (5) for fe80::4001:aff:fe8e:2%2#123 Oct 16 16:29:01 instance-1 ntpd[668]: failed to init interface for address fe80::4001:aff:fe8e:2%2 Oct 16 ...
When there is not an applicable host in ipv6 address band and when it's going to map ipv6 address, for a cause, it occurs. Ex. Raw With /etc/sysconfig/network file NETWORKING_IPV6=yes is changed to NETWORKING_IPV6=no or Raw With /etc/modprobe.conf file alias net-pf-10 off options ipv6 disable=1 Product (s) Red Hat Enterprise Linux Component ntp
8 Answers Sorted by: 39 In my case running chromedriver with --verbose flag helped to figure out the issue: [1564749154.010] [SEVERE]: bind () failed: Cannot assign requested address (99) [1564749154.011] [INFO]: listen on IPv6 failed with error ERR_ADDRESS_INVALID Chrome attempted to listen on IPv6 address, which was not enabled in Docker.
Dec 26 13:54:18 localhost ntpd [2142]: bind (20) AF_INET6 fe80::21e:8cff:fe76:6287%2#123 flags 0x11 failed: Cannot assign requested address Dec 26 13:54:18 localhost ntpd [2142]: unable to create socket on eth0 (4) for fe80::21e:8cff:fe76:6287#123 IPv6 is disabled at my router as well as in /etc/ufw/sysctl.conf net.ipv6.conf.all.disable_ipv6 = 1
Failed to connect to server: The requested address is a broadcast address, but the appropriate flag was not set 8 Set MAC address fails - RTNETLINK answers: Cannot assign requested address
Apr 17 20:40:44 Tower ntpd [1838]: bind (19) AF_INET6 fe80::68a0:9cff:fef4:afc1%10#123 flags 0x11 failed: Cannot assign requested address Apr 17 20:40:44 Tower ntpd [1838]: failed to init interface for address fe80::68a0:9cff:fef4:afc1%10 Apr 17 20:41:00 Tower sshd [1826]: Received signal 15; terminating.
2017:01:16-13:56:12 fwhostname-1 ntpd [9482]: failed to init interface for address 2001::1 <-----IPv6 address redacted. NTP config in the firewall is set to use pool.ntp.org. Looks like it resolves to an IPv4 address automatically. Firmware version: 9.409-9. Pattern version: 116407.
I don't know much about it, but a quick internet search suggest it might be an issue of domain name resolution due to the address being under the new protocol IPv6, see debian-pi/raspbian-ua-netinst#495. That apprently is fixable by setting the dns:order variable in the ~/.lftprc configuration file as:
2022-04-02T15:53:03+02:00 DS918 ntpd [6542]: unable to create socket on docker6e61ca5 (40601) for fe80::bc1a:28ff:fe7c:7d17%55111#123. Neither the DS itself nor Docker does have IPv6 enabled, nor does the entire LAN. I've configured the time service to synchronize with another DS (my primary Directory Server), which obviouly works (tested with ...
Sep 21 00:09:43 octave ntpd [1384]: bind (25) AF_INET6 2001:bc8:3ca9:101::3#123 flags 0x11 failed: Cannot assign requested address Sep 21 00:09:43 octave ntpd [1384]: unable to create socket on eno1 (11) for 2001:bc8:3ca9:101::3#123 Sep 21 00:09:43 octave ntpd [1384]: failed to init interface for address 2001:bc8:3ca9:101::3