Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dotfiles
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gerhard Gonter
dotfiles
Commits
e29cd6ea
Commit
e29cd6ea
authored
9 years ago
by
Gerhard Gonter
Browse files
Options
Downloads
Patches
Plain Diff
Ubuntu 16.04 learned new tricks to sneak in IPv6 which might be unwanted at certain times
parent
a3e09443
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ipv6off.sh
+2
-0
2 additions, 0 deletions
ipv6off.sh
ipv6on.sh
+2
-0
2 additions, 0 deletions
ipv6on.sh
with
4 additions
and
0 deletions
ipv6off.sh
0 → 100755
+
2
−
0
View file @
e29cd6ea
#!/bin/sh
sysctl
-a
net.ipv6.conf 2>/dev/null |
awk
'/disable_ipv6/ { print $1"=1"}'
| xargs sysctl
This diff is collapsed.
Click to expand it.
ipv6on.sh
0 → 100755
+
2
−
0
View file @
e29cd6ea
#!/bin/sh
sysctl
-a
net.ipv6.conf 2>/dev/null |
awk
'/disable_ipv6/ { print $1"=0"}'
| xargs sysctl
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment