README 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. Network Configuration:
  2. Script Files:
  3. rc.d/init.d/network
  4. sysconfig/network-devices/ifup
  5. sysconfig/network-devices/ifdown
  6. sysconfig/network-devices/services/*
  7. Configuration Files:
  8. sysconfig/network-devices/ifconfig.*/*
  9. Note: ifconfig.* could be either a file or directory,
  10. but the filename extention must be the same name
  11. as the network interface you wish it to belong to.
  12. The files within the directory will be processed
  13. in alphanumerical order on boot, and reversed on
  14. shutdown.
  15. - SERVICE: which script to run in services directory.
  16. - ONBOOT: if set to yes, this interface will be started on
  17. bootup, and stopped on shutdown
  18. - ONHOTPLUG: if set to yes, this interface will be started
  19. and stopped on hotplug events. This requires
  20. ifup and ifdown symlinked to /sbin, as well
  21. as the hotplug package
  22. sysconfig/network
  23. - HOSTNAME: Value of the system's hostname
  24. Additional Configuration:
  25. sysconfig/network-devices/ifconfig.*
  26. ipv4-static:
  27. - IP: static IP Address
  28. - GATEWAY: Specifies the IP Address of the gateway server
  29. - PREFIX: CIDR prefix of IP Address, defaults to 24 if not set
  30. - PEER: IP Address of peer (for point-to-point connections and tunnels)
  31. - BROADCAST: broadcast address
  32. ipv4-static-route:
  33. - TYPE: network (default type if not specified), default, host or
  34. unreachable
  35. - IP: IP Address of target (for network, host and unreachable)
  36. - PREFIX: CIDR prefix of target (for network, host and unreachable)
  37. - GATEWAY: IP Address of gateway to reach target (for network and default)
  38. SetClock configuration:
  39. Script Files:
  40. rc.d/init.d/setclock
  41. Configuration Files:
  42. sysconfig/clock
  43. - UTC: 1 assumes hwclock is in UTC
  44. 0 assumes hwclock is in local time
  45. CleanFS configuration:
  46. Script Files:
  47. rc.d/init.d/cleanfs
  48. Configuration Files:
  49. /etc/sysconfig/createfiles
  50. Each line is parsed, using space as a deliminator.
  51. [NAME] [TYPE] [PERMISSIONS] [USER] [GROUP]
  52. The below fields are currently only used on dev type.
  53. ([DEV TYPE] [MAJOR#] [MINOR#])
  54. Name:
  55. File/Directory/Device name
  56. Type:
  57. dir: creates a directory
  58. file: creates a file
  59. dev: creates a device
  60. Permissions:
  61. chmod the created file
  62. User/Group:
  63. chown the created file/dir to this user/group
  64. Dev Type:
  65. char: character [needs MAJOR#, MINOR#]
  66. block: block [needs MAJOR#, MINOR#]
  67. pipe: pipe
  68. Major#:
  69. Used by character and block devices.
  70. Minor#:
  71. Used by character and block devices.