This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%PAM-1.0 | |
auth sufficient pam_unix.so | |
-auth sufficient pam_systemd_home.so | |
auth required pam_deny.so | |
account required pam_nologin.so | |
-account sufficient pam_systemd_home.so | |
account sufficient pam_unix.so | |
account required pam_permit.so | |
-password sufficient pam_systemd_home.so | |
password sufficient pam_unix.so sha512 shadow try_first_pass use_authtok |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from mininet.net import Mininet | |
from mininet.node import Controller, RemoteController | |
from mininet.cli import CLI | |
from mininet.log import setLogLevel, info | |
from mininet.link import Link, Intf, TCLink | |
from mininet.topo import Topo | |
from mininet.util import dumpNodeConnections | |
import logging |