|
@@ -0,0 +1,31 @@
|
|
1
|
+/*
|
|
2
|
+ * Console configuration suitable for use in public cloud
|
|
3
|
+ * environments, or any environment where direct console access is not
|
|
4
|
+ * available.
|
|
5
|
+ *
|
|
6
|
+ */
|
|
7
|
+
|
|
8
|
+/* Log to syslog(s) server
|
|
9
|
+ *
|
|
10
|
+ * The syslog server to be used must be specified via e.g.
|
|
11
|
+ * "set syslog 192.168.0.1".
|
|
12
|
+ */
|
|
13
|
+#define CONSOLE_SYSLOG
|
|
14
|
+#define CONSOLE_SYSLOGS
|
|
15
|
+
|
|
16
|
+/* Log to serial port
|
|
17
|
+ *
|
|
18
|
+ * Note that the serial port output from an AWS EC2 virtual machine is
|
|
19
|
+ * generally available (as the "System Log") only after the instance
|
|
20
|
+ * has been stopped.
|
|
21
|
+ */
|
|
22
|
+#define CONSOLE_SERIAL
|
|
23
|
+
|
|
24
|
+/* Log to partition on local disk
|
|
25
|
+ *
|
|
26
|
+ * If all other log mechanisms fail then the VM boot disk containing
|
|
27
|
+ * the iPXE image can be detached and attached to another machine in
|
|
28
|
+ * the same cloud, allowing the log to be retrieved from the log
|
|
29
|
+ * partition.
|
|
30
|
+ */
|
|
31
|
+#define CONSOLE_INT13
|