Kickstart using anaconda-ks.cfg

Heyas

I'm trying to build a live image using livecd-tools (livecd-creator), but this time i'd like to reuse the /root/anaconda-ks.cfg.

System: Fedora 3.16.7-200.fc20.x86_64

The building starts, the download begins, but it fails with networking.

MAIN.ks

# Based on: fedora-live-base.ks
# Changed by: sea
#
#	System Settings
#
	timezone Europe/Zurich --nontp
	lang de_CH.UTF-8
	keyboard sg
	keyboard --vckeymap=sg --xlayouts='sg'
	%include	/root/anaconda-ks.cfg
#
#
#	Includes, order required
#	Default environment first
#
	%include 	/usr/share/spin-kickstarts/fedora-repo-not-rawhide.ks
#
#	Desktop Environment files
#
	%include	/usr/share/spin-kickstarts/fedora-livecd-awesome.ks
#
#
#	Custom Area
#
%post --nochroot
	# '/' is the root of your host machine
	# $INSTALL_ROOT represents the root of the sysimage
	echo TODO
	echo $INSTALL_ROOT
%end
%post
	# '/' is the root of your virtual system image
	echo TODO
%end
%packages
#
# Basic GUI
#
	@core
	@hardware-support
	@standard
	@base-x

# Might be removable
	#dial-up
	@multimedia
#
# Required by LiveImage
#
	kernel
	memtest86+
	anaconda
	@anaconda-tools
	qemu-guest-agent
%end

I started to experiment with the anaconda file, anyhow, this is the network section:

# Network information
network  --bootproto=dhcp --essid="<ESSID-name>" --ipv6=auto --activate
#network  --bootproto=dhcp --device=p4p1 --onboot=off --ipv6=auto
network  --bootproto=dhcp --device=wlp3s0 --onboot=off --ipv6=auto

network  --hostname=P50.ocean

Any adivces?
Thank you in advance