Skip to content

Instantly share code, notes, and snippets.

@frimik
Last active December 17, 2015 15:40
Show Gist options
  • Save frimik/5633799 to your computer and use it in GitHub Desktop.
Save frimik/5633799 to your computer and use it in GitHub Desktop.
conserver config examples
default full { rw *; }
# 2 Dell examples:
default ipmi-sol-dell {
type exec;
execsubst h=cs;
exec ipmitool -I lanplus -U root -P calvin -H h.lom.domain.net sol activate;
}
default ipmi-sol-dell-ip {
type exec;
execsubst h=cs;
exec ipmitool -I lanplus -U root -P calvin -H h sol activate;
}
console idrac-2562GH { include ipmi-sol-dell ; }
console 10.10.2.5 { include ipmi-sol-dell-ip ; }
# Serial Line Console over SSH examples (a serial console server with SSH support):
default slc-ssh {
type exec;
execsubst Z=hs,P=Pd;
portbase 3000; portinc 1;
exec ssh -o StrictHostKeyChecking=no -i /etc/conserver/conserver -l conserver Z -p P;
}
console some-switch-1 { include slc-ssh; host serial-console-server.domain.net; port 30; }
console some-switch-2 { include slc-ssh; host serial-console-server.domain.net; port 31; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment